make中vpath匹配后如何获取绝对路径?

发布于 2024-08-17 18:18:08 字数 133 浏览 6 评论 0原文

我有一个 makefile,它根据某些属性设置 vpath 并将源文件列表生成到一个变量中。我需要运行 makefile 而无需编译任何内容(编译实际上是由不同的 makefile 处理的),并且只需查看文件名根据 vpath 设置与哪些实际文件匹配。

I have a makefile that depending on some properties sets vpath and generates a list of source files into one variable. I need to run the makefile without compiling anything (the compilation is actually handled by a different makefile) and just see to which real files the filenames get matched depending on the vpath settings.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

初见 2024-08-24 18:18:08

选项 1:让 make 进行路径搜索:

.PHONY: whichfiles
whichfiles: $(LIST_OF_SOURCE_FILES)
    @echo $+

选项 2:使用 $(通配符) 模拟路径搜索:

.PHONY: whichfiles
whichfiles:
    @echo $(foreach f,$(LIST_OF_SOURCE_FILES),$(firstword $(wildcard $(VPATH:%=%/$f)) not-found:$f))

无论哪种方式,“make whichfiles”都会打印匹配文件的列表。

如果找不到某些文件,选项 1 将失败,并显示“无规则可制定”,报告找不到第一个文件。选项 2 将为每个丢失的文件打印“not-found:”。

Option 1: Let make do its path search:

.PHONY: whichfiles
whichfiles: $(LIST_OF_SOURCE_FILES)
    @echo $+

Option 2: Simulate the path search using $(wildcard):

.PHONY: whichfiles
whichfiles:
    @echo $(foreach f,$(LIST_OF_SOURCE_FILES),$(firstword $(wildcard $(VPATH:%=%/$f)) not-found:$f))

Either way, "make whichfiles" will print the list of matched files.

If some of the files can't be found, option 1 will fail with "no rule to make" reporting the first file that could not be found. Option 2 will print "not-found:" for each missing file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文