mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-06 04:51:33 +00:00
27 lines
262 B
Makefile
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:
|