我想为 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