Makefile:如何根据目标运行某些先决条件?

发布于 2025-01-10 07:33:42 字数 429 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眉黛浅 2025-01-17 07:33:42

您可以使用目标特定变量来设置相关变量。

下面的示例展示了如何将 EXTRA_FLAGS 添加到 target1-i 目标。

OBJLIST1=foo.o bar.o baz.o

target1: $(OBJLIST1)
    $(CC) $(CFLAGS) -c $^ -o $@

target1-i: EXTRA_FLAGS=-DSOME_MACRO
target1-i: $(OBJLIST1)
    $(CC) $(CFLAGS) -c $^ -o $@

$(OBJLIST1) : $(OBJLIST1:%.o=%.c)
    $(CC) $(CFLAGS) $(EXTRA_FLAGS) -c $^ -o $@

You can use target specific variables to set relevant variables.

The example below shows how to add EXTRA_FLAGS to the target1-i target.

OBJLIST1=foo.o bar.o baz.o

target1: $(OBJLIST1)
    $(CC) $(CFLAGS) -c $^ -o $@

target1-i: EXTRA_FLAGS=-DSOME_MACRO
target1-i: $(OBJLIST1)
    $(CC) $(CFLAGS) -c $^ -o $@

$(OBJLIST1) : $(OBJLIST1:%.o=%.c)
    $(CC) $(CFLAGS) $(EXTRA_FLAGS) -c $^ -o $@
岁月静好 2025-01-17 07:33:42

您尝试以两种不同的方式构建相同的目标文件。这是不明确的(请参阅我在 @kaylum 的回答中的评论)。我会尝试类似:

SOURCES=foo.c bar.c baz.c

%_1.o : %.c
    $(CC) $(CFLAGS) -c $^ -o $@

%_2.o : %.c
    $(CC) $(CFLAGS) -DSOME_MACRO -c $^ -o $@

target1: $(SOURCES:%.c=%_1.o)
    $(CC) $(CFLAGS) -c $^ -o $@

target2: $(SOURCES:%.c=%_2.o)
    $(CC) $(CFLAGS) -c $^ -o $@

这会给你:

$ make -n target1
cc  -c foo.c -o foo_1.o
cc  -c bar.c -o bar_1.o
cc  -c baz.c -o baz_1.o
cc  -c foo_1.o bar_1.o baz_1.o -o target1

$ make -n target2
cc  -DSOME_MACRO -c foo.c -o foo_2.o
cc  -DSOME_MACRO -c bar.c -o bar_2.o
cc  -DSOME_MACRO -c baz.c -o baz_2.o
cc  -c foo_2.o bar_2.o baz_2.o -o target2

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:

SOURCES=foo.c bar.c baz.c

%_1.o : %.c
    $(CC) $(CFLAGS) -c $^ -o $@

%_2.o : %.c
    $(CC) $(CFLAGS) -DSOME_MACRO -c $^ -o $@

target1: $(SOURCES:%.c=%_1.o)
    $(CC) $(CFLAGS) -c $^ -o $@

target2: $(SOURCES:%.c=%_2.o)
    $(CC) $(CFLAGS) -c $^ -o $@

which gives you:

$ make -n target1
cc  -c foo.c -o foo_1.o
cc  -c bar.c -o bar_1.o
cc  -c baz.c -o baz_1.o
cc  -c foo_1.o bar_1.o baz_1.o -o target1

$ make -n target2
cc  -DSOME_MACRO -c foo.c -o foo_2.o
cc  -DSOME_MACRO -c bar.c -o bar_2.o
cc  -DSOME_MACRO -c baz.c -o baz_2.o
cc  -c foo_2.o bar_2.o baz_2.o -o target2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文