摘要:
学习 makefile遇到了静态模式规则部分,研究一下:http://www.gnu.org/software/make/manual/html_node/Static-Usage.html用的是大家经常用的例子: objects = foo.o bar.o all: $(objects) $(objects): %.o: %.c $(CC) -c $(CFLAGS) $< -o $@我想,是否可以把它类比于通配符。 $(objects)里的内容都要是.o 格式。而每个 .o 都依赖于 .c。 阅读全文
摘要:
继续翻译Secondary Expansion of Static Pattern Rules ------------------------------------------- Rules for secondary expansion of static pattern rules are identical to those for explicit rules, above, with one exception: for static pat... 阅读全文