PracticeDev/study_makefile/makefile9/Makefile

14 lines
103 B
Makefile
Raw Normal View History

2022-12-20 17:31:11 +08:00
all: one two three
one:
touch one
two:
touch two
three:
touch three
clean:
rm -f one two three