具有多个文件的 latex aspell 的 makefile
makefile for latex aspell with multiple files
我需要 运行 使用 makefile 对目录中的所有 tex 文件进行 aspell
spellcheck:
@aspell --lang=en -t -c sections/*tex
不起作用,因为 aspell 无法处理多个文件。我如何 运行 多个 运行 一个接一个的 aspell?
对每个文件运行制定规则
TEX_FILES = $(wildcard sections/*.tex)
.PHONY: spellcheck
spellcheck: $(addsuffix .spchk,$(basename $(TEX_FILES)))
%.spchk: %.tex
@aspell --lang=en -t -c $<
我需要 运行 使用 makefile 对目录中的所有 tex 文件进行 aspell
spellcheck:
@aspell --lang=en -t -c sections/*tex
不起作用,因为 aspell 无法处理多个文件。我如何 运行 多个 运行 一个接一个的 aspell?
对每个文件运行制定规则
TEX_FILES = $(wildcard sections/*.tex)
.PHONY: spellcheck
spellcheck: $(addsuffix .spchk,$(basename $(TEX_FILES)))
%.spchk: %.tex
@aspell --lang=en -t -c $<