作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
BUILT_DIR = /tmp/obj
SRC = /source/dir
/tmp/obj/%/builtin.o : $(SRC)/%/*.c
gcc $^ -o $@
但是你知道:
In order for the pattern rule to apply, its target pattern must match the file name under consideration and all of its prerequisites (after pattern substitution) must name files that exist or can be made.
如果我执行 make/tmp/obj/hfa/builtin.o
,make 会报错:
make: *** No rule to make target
/tmp/obj/hfa/builtin.o'.停止。`
如何修改 Makefile 以满足我的要求?
最佳答案
可以使用二级扩展
BUILT_DIR = /tmp/obj
SRC = /source/dir
.SECONDEXPANSION:
/tmp/obj/%/builtin.o : $$(wildcard $(SRC)/%/*.c)
gcc $^ -o $@
关于makefile - 隐式规则先决条件中的通配符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15562909/
我是一名优秀的程序员,十分优秀!