如何制作一个通用 makefile 以选择具有特定扩展名的所有文件
为每个扩展创建目标的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)