PracticeDev/study_makefile/makefile13/Makefile

15 lines
112 B
Makefile
Raw Normal View History

2022-12-20 17:31:11 +08:00
hey: one two
echo $@
echo $?
echo $^
touch hey
one:
touch one
two:
touch two
clean:
rm -f hey one two