2

我想为 LaTeX 文档创建一个 makefile(在这个最小的例子中)。当没有文件“makeindexstyle.ist”时,应该创建它(通过运行make makeindexstyle.ist)并用于格式化索引。规则 %.pdf反映了这一点。但是,它还没有工作,我收到错误

ifneq (, ) {
/bin/sh: 1: Syntax error: word unexpected (expecting ")")
make: *** [master.pdf] Error 2

怎么了?

Parts from Makefile:

MASTER = master
TEX = slave

TEXI = texi2dvi -p

all: $(MASTER:=.pdf)

%.pdf: %.tex $(TEX:=.tex)
    ifneq ($(wildcard makeindexstyle.ist), ) { # if makeindexstyle.ist exists, compile and build index
        $(TEXI) $<
        make makeindexstyle.ist
        makeindex -c -s makeindexstyle.ist $(MASTER:=.idx)
    }
    endif
    $(TEXI) $<

makeindexstyle.ist:
    @(echo "...") > makeindexstyle.ist

更新:我试图尽可能简单地查看错误来自哪里。除其他外(如引用),我试过这个:

%.pdf: %.tex $(TEX:=.tex)
    exist := $(wildcard "absolute-path-to-makeindexstyle.ist")
    ifneq ($strip $(exist)),)
             echo "foo"
    endif
    $(TEXI) $<

但结果是

exists := 
make: exists: Command not found
make: *** [book.pdf] Error 127
4

2 回答 2

2

同时,我可以在 shell 端解决它:

IDX = "makeindexstyle.ist"
%.pdf: %.tex $(TEX:=.tex)
    @if test -f $(IDX); then \
        echo "foo"; \
    fi
    $(TEXI) $<
于 2012-10-09T07:09:26.253 回答
-1

这听起来像是如何检查 Makefile 中是否存在文件?如何通过测试文件是否存在来有条件地设置 Makefile 变量

尝试

ifneq ($(wildcard makeindexstyle.ist),)

没有空间。或者,抛开""争论?

于 2012-10-08T22:01:27.543 回答