reqif/scripts/Makefile

15 行
233 B
Makefile

.PHONY: all
.PRECIOUS: %.tex
all: specification.pdf clean
%.tex: %.reqif
python3 reqif/scripts/parse.py $<
%.pdf: %.tex
latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $<
clean:
latexmk -c
rm -f *~ *.tex