PracticeDev/study_makefile/makefile12/Makefile

13 lines
152 B
Makefile

thing_wrong := *.o
thing_right := $(wildcard *.o)
all: one two three four
one: $(thing_wrong)
two: *.o
three: $(thing_right)
four: $(wildcard *.o)