Makefile--wildcard函数

在文件名中使用通配符:

Makefile的通配符为*,?,[],与shell使用的是一样的通配符。Makefile的通配符只有在targets 和prerequisites中展开,在定义变量时是不会展开的,

如果想在定义变量时展开通配符,需要使用wildcard函数。

如果文件名包含*,号,需要用\号转义,如foo*bar可以这样表示:foo\*bar.

如在/opt/src文件夹下包含有mcu.c test.c,

SRCS=$(wildcard *.c)

SRCS = mcu.c test.c


objects := $(patsubst %.c,%.o,$(wildcard *.c))

objects=mcu.o test.o

你可能感兴趣的:(makefile)