15 lines
112 B
Makefile
15 lines
112 B
Makefile
|
hey: one two
|
||
|
echo $@
|
||
|
echo $?
|
||
|
echo $^
|
||
|
touch hey
|
||
|
|
||
|
one:
|
||
|
touch one
|
||
|
|
||
|
two:
|
||
|
touch two
|
||
|
|
||
|
clean:
|
||
|
rm -f hey one two
|