如何制作一个通用 makefile 以选择具有特定扩展名的所有文件

发布于 2024-09-30 10:09:03 字数 287 浏览 1 评论 0原文

为每个扩展创建目标的 makefile 是什么样子的?

我当前的 makefile:

SOURCES=*.gnuplot   
TARGETS=$(SOURCES:.gnuplot=.pdf)

all: $(TARGETS)

%.pdf: %.gnuplot
        cp $< $@

问题是只有 1 个目标:*.pdf 而不是我想要的 test.pdf。

我怎样才能让这个 make 文件为每个 gnuplot 文件生成一个 pdf 文件?

How does a makefile look like that makes a target for every extension?

My current makefile:

SOURCES=*.gnuplot   
TARGETS=$(SOURCES:.gnuplot=.pdf)

all: $(TARGETS)

%.pdf: %.gnuplot
        cp 
lt; $@

The problem is that there is only 1 target: *.pdf and not test.pdf as I wanted.

How can I let this make file make a pdf file for every gnuplot file?

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

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

发布评论

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

评论(1

会发光的星星闪亮亮i 2024-10-07 10:09:03
SOURCES = $(wildcard *.gnuplot)
SOURCES = $(wildcard *.gnuplot)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文