Skip to content

Instantly share code, notes, and snippets.

@dedeibel
Created May 30, 2016 21:21
Show Gist options
  • Save dedeibel/e61b396ba4e3349f47201a1847407cb8 to your computer and use it in GitHub Desktop.
Save dedeibel/e61b396ba4e3349f47201a1847407cb8 to your computer and use it in GitHub Desktop.
make print automatic variables
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