PracticeDev/study_makefile/makefile12/Makefile

13 lines
152 B
Makefile
Raw Permalink Normal View History

2022-12-20 17:31:11 +08:00
thing_wrong := *.o
thing_right := $(wildcard *.o)
all: one two three four
one: $(thing_wrong)
two: *.o
three: $(thing_right)
four: $(wildcard *.o)