Makefile:如何根据目标运行某些先决条件?
OBJLIST1=foo.o bar.o baz.o
target1: $(OBJLIST1)
$(CC) $(CFLAGS) -c $^ -o $@
$(OBJLIST1) : $(OBJLIST1:%.o=%.c)
$(CC) $(CFLAGS) -c $^ -o $@
target1-i: $(OBJLIST1)
$(CC) $(CFLAGS) -c $^ -o $@
$(OBJLIST1) : $(OBJLIST1:%.o=%.c)
$(CC) $(CFLAGS) -DSOME_MACRO -c $^ -o $@
我需要能够根据我调用的目标以不同的方式编译目标文件列表。我不知道该怎么做,这给了我一堆错误,比如“覆盖目标配方......”,“忽略目标旧配方......”。如何指定要在目标命令中调用哪个配方?显然顺序没有太大变化。
OBJLIST1=foo.o bar.o baz.o
target1: $(OBJLIST1)
$(CC) $(CFLAGS) -c $^ -o $@
$(OBJLIST1) : $(OBJLIST1:%.o=%.c)
$(CC) $(CFLAGS) -c $^ -o $@
target1-i: $(OBJLIST1)
$(CC) $(CFLAGS) -c $^ -o $@
$(OBJLIST1) : $(OBJLIST1:%.o=%.c)
$(CC) $(CFLAGS) -DSOME_MACRO -c $^ -o $@
I need to be able to compile list of object files differently depending on the target i call. I have no idea how to do that tbh, this is giving me a bunch of errors like "overriding recipe for target...", "ignoring old recipe for target...". How can i specify which recipe i want to call in a target command? Apparently the order doesn't change much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用目标特定变量来设置相关变量。
下面的示例展示了如何将 EXTRA_FLAGS 添加到
target1-i
目标。You can use target specific variables to set relevant variables.
The example below shows how to add EXTRA_FLAGS to the
target1-i
target.您尝试以两种不同的方式构建相同的目标文件。这是不明确的(请参阅我在 @kaylum 的回答中的评论)。我会尝试类似:
这会给你:
You're trying to have the same object file built in two different ways. This is ambiguous (see my comment in @kaylum's answer). I would try something like:
which gives you: