15 líneas
233 B
Makefile
15 líneas
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
|