gpt4 book ai didi

获取规则依赖项的 Makefile 技巧

转载 作者:行者123 更新时间:2023-12-04 05:30:55 29 4
gpt4 key购买 nike

GNU Makefile 中是否有任何技巧来获取规则的所有依赖项?

例子:

rule1:  dep1_1 dep1_2 dep1_3

rule2: dep2_1 dep2_2 rule1

dump_deps:
echo "Dependencies of rule1: $(call do_the_trick, $(rule1))"
echo "Dependencies of rule2: $(call do_the_trick, $(rule2))"

install: $(prefix install-,$(call do_the_trick, $(rule1)))

我希望能够调用 make dump_deps 并查看:

dep1_1 dep1_2 dep1_3
dep2_1 dep2_2 dep1_1 dep1_2 dep1_3

或者使用 make install 等自动安装依赖项。

这可能吗?


编辑:

我更改了示例以更好地表明我想要一些自动化的东西,而不必自己对依赖项列表进行硬编码。

最佳答案

您不能显示传递 依赖关系,只能显示直接依赖关系,但是,您可以获取下面生成的输出并将其提供给程序dot (graphviz 的一部分)来理解这些传递关系。

编辑:我想您也可以用其他方式对结果进行后处理以仅列出部门,但我认为漂亮的图片更好;如果您不同意,请随时投反对票;)

这是一个示例 makefile(当 c&p 时注意丢失的制表符!):

# Makefile that demonstrates how to dump dependencies.
# The macros we use for compiling stuff.
CC_OBJ=$(CC) -o $@ -c $(CFLAGS) $<
CC_BIN=$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $^

# If we get "DUMP_DEPS=1 DUMP_DOT=1" on the command line, then instead of
# make-style dependencies, we'll output 'dot' syntax.
# Note: normally, DUMP_DOT_TAIL is undefined, so it doesn't generate any noise.
ifeq ($(DUMP_DOT),1)
DUMP_DOT_HEAD=digraph dependencies {
DUMP_DOT_TAIL=@echo "}"
$(info $(DUMP_DOT_HEAD))
list_dep=@for f in $^; do echo " \"$@\" -> \"$$f\";"; done
else
list_dep=@echo "$@: $^"
endif

# If we get "DUMP_DEPS=1" on the command line, then
# instead of building the code, just print the dependencies.
ifeq ($(DUMP_DEPS),1)
CC_OBJ=$(list_dep)
CC_BIN=$(list_dep)
endif

# An implicit rule that builds *.c -> *.o.
%.o:%.c
$(CC_OBJ)

# Variables for stuff we wanna build.
target=hello

objects=main.o
objects+=stuff.o
objects+=yeah.o

# The top-level 'all' target.
.PHONY: all
all: $(target)
$(DUMP_DOT_TAIL)

# Builds our final executable
$(target): $(objects)
$(CC_BIN)

# A standard clean target.
.PHONY: clean
clean:
-rm -f $(target) $(objects)

现在,您可以这样做:

make -B DUMP_DEPS=1

它会通过并列出你所有的先决条件是“target: pre-requisite”的样式。示例输出:

正常运行:

cc -o main.o -c  main.c
cc -o stuff.o -c stuff.c
cc -o yeah.o -c yeah.c
cc -o hello main.o stuff.o yeah.o

使用 make -B DUMP_DEPS=1:

main.o: main.c
stuff.o: stuff.c
yeah.o: yeah.c
hello: main.o stuff.o yeah.o

使用 make -B DUMP_DEPS=1 DUMP_DOT=1:

digraph dependencies {
"main.o" -> "main.c";
"stuff.o" -> "stuff.c";
"yeah.o" -> "yeah.c";
"hello" -> "main.o";
"hello" -> "stuff.o";
"hello" -> "yeah.o";
}

然后您可以运行以下命令将漂亮的图片输出为 SVG 图像:

make -B DUMP_DEPS=1 DUMP_DOT=1 | dot -Tsvg > deps.svg

这是它的样子(这实际上是一个 png,由 -Tpng > deps.png 生成):

image

我认为这需要一些额外的工作才能在所有情况下产生准确的结果,但原则是合理的(例如,如果您使用 gcc 生成的依赖文件,则需要先创建它们)。

关于获取规则依赖项的 Makefile 技巧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12641225/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com