reqif/scripts/Makefile

15 lines
233 B
Makefile
Raw Normal View History

.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