PracticeDev/study_makefile/makefile9/Makefile

14 lines
103 B
Makefile

all: one two three
one:
touch one
two:
touch two
three:
touch three
clean:
rm -f one two three