Created
May 30, 2016 21:21
-
-
Save dedeibel/e61b396ba4e3349f47201a1847407cb8 to your computer and use it in GitHub Desktop.
make print automatic variables
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foo: foo.cpp bar.o | |
$(info @ is $@ ) | |
$(info % is $% ) | |
$(info < is $< ) | |
$(info ? is $? ) | |
$(info ^ is $^ ) | |
$(info + is $+ ) | |
$(info | is $| ) | |
$(info * is $* ) | |
${CXX} ${CXXFLAGS} -o $@ $< | |
# https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment