cpp-cheat/make/automatic-variables.mk
2018-02-20 18:05:35 +00:00

27 lines
262 B
Makefile

.POSIX:
## Automatic variables.
# https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html
## $@
# Target.
## $<
# First dependency.
## $^
# All dependencies.
a: b c
[ '$@' = 'a' ]
[ '$<' = 'b' ]
[ '$^' = 'b c' ]
b:
c: