PracticeDev/study_makefile/makefile14/Makefile

16 lines
176 B
Makefile
Raw Permalink Normal View History

2022-12-20 17:31:11 +08:00
objects = foo.o bar.o all.o
all: $(objects)
foo.o: foo.c
bar.o: bar.c
all.o: all.c
all.c:
echo "int main() { return 0; }" > all.c
%.c:
touch $@
clean:
rm -f *.c *.o all