Makefile通配符的使用和理解
Makefile通配符的使用和理解
1.在建立下面文件:
test1.c test2.c test3.c test4.c test.c.c
NAME = $(basename test.c)
JJ = $(filter %.c,$(shell pwd | ls))
GG = $(wildcard *.c)
OBJ1 = $(subst .c,.o,$(GG))
OBJ2 = $(patsubs...
原创
2019-12-18 00:11:30 ·
672 阅读 ·
0 评论