如何获取模式规则以匹配文件名与Makefile中的空格?

时间:2011-06-03 23:23:03

标签: makefile design-patterns whitespace filenames rule

在GNU make docs中,'%'被记录为匹配“any nonempty substring”。但是,它似乎实际上只匹配不包含空格的非空子串。例如,假设你这样做:

mkdir /tmp/foo
cd /tmp/foo
echo 'int main() { return 0; }' > "test.c"
echo 'int main() { return 0; }' > "test space.c"

现在,您应该能够使用GNU Make的内置模式规则来构建它们:

anthony@Zia:/tmp/foo$ make "test"
cc     test.c   -o test
anthony@Zia:/tmp/foo$ make "test space"
make: *** No rule to make target `test space'.  Stop.

编写makefile时会出现同样的问题。

anthony@Zia:/tmp/foo$ rm test
anthony@Zia:/tmp/foo$ echo 'all: test test\ space' > Makefile 
anthony@Zia:/tmp/foo$ make
cc     test.c   -o test
make: *** No rule to make target `test space', needed by `all'.  Stop.

即使您明确添加了%: %.c规则,结果也是一样的。但是如果你向Makefile添加一个显式规则,就像这样,它可以工作:

test\ space: test\ space.c
    $(CC) -o "$@" "$<"     # first char is tab, of course.

是否有一个技巧可以让空格与隐式规则一起使用?

修改

我发送了一个错误报告:http://lists.gnu.org/archive/html/bug-make/2011-06/msg00002.html

2 个答案:

答案 0 :(得分:5)

我不相信。作为字符串传递的以空格分隔的标记列表的概念在make中非常根深蒂固。这些列表被解析和重新分析。在UNIX世界中,目录和文件名中的空格被认为是不好的做法是有原因的。

答案 1 :(得分:2)

这是一个kludge,但截至今天,人们仍然有时会得到带空格的路径。

无论如何,建立链接而不是直接访问%规则中的目录就可以了。

# GNU makefile
DIR_WITH_SPACE=/c/Users/me/My\ Code

# *** DOESN'T WORK ***
%.h : $(DIR_WITH_SPACE)/%.h
    cp -v "$<" "$@"

fix:
  ln -s $(DIR_WITH_SPACES) dir_fixed

# Does work :)
%.h : dir_fixed/%.h
    cp -v "$<" "$@"