gpt4 book ai didi

makefile - 如何使用单个 Makefile 定位多个目录?

转载 作者:行者123 更新时间:2023-12-02 20:07:33 24 4
gpt4 key购买 nike

我正在使用 GNU Make 构建静态 html 文档的三个不同版本。

我使用 Less 作为 CSS 预处理器。

我的目录结构如下所示:

Makefile
160x600/style.less
300x250/style.less
728x90/style.less

这是我的 Makefile:

LESSC=lessc -x # use -x for debugging

.PHONY: all clean

all: 160x600 300x250 728x90

%.css: %.less
$(LESSC) $< > $@

160x600: 160x600/style.css
300x250: 300x250/style.css
728x90: 728x90/style.css

clean:
rm -f 160x600/*.css
rm -f 300x250/*.css
rm -f 728x90/*.css

这样,我就可以使用 make 160x600 从 style.less 构建 style.css。

但我不想明确列出每个目录的目标规则。相反,我尝试添加此规则而不是三个目录特定的规则:

%: %/style.css

但这不起作用。我认为从这个例子可以清楚地看出我的目标是什么。有没有办法接受任何目录作为目标,以便我只需在 all: 规则中列出目录名称?

最佳答案

使用static pattern rule :

res_dirs = 160x600 300x250 728x90

$(res_dirs): %: %/style.css

关于makefile - 如何使用单个 Makefile 定位多个目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14400732/

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