2021-03-07 10:14:26 +01:00
|
|
|
TARGET=specification
|
2021-03-06 21:34:23 +01:00
|
|
|
|
2021-03-07 10:14:26 +01:00
|
|
|
.PHONY: all tex pdf clean cleanall
|
2021-03-06 21:34:23 +01:00
|
|
|
|
2021-03-07 10:14:26 +01:00
|
|
|
all: pdf clean
|
2021-03-06 21:34:23 +01:00
|
|
|
|
2021-03-07 10:14:26 +01:00
|
|
|
tex:
|
|
|
|
python3 reqif/scripts/parse.py $(TARGET).reqif
|
|
|
|
|
|
|
|
pdf: tex
|
|
|
|
latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $(TARGET).tex
|
2021-03-06 21:34:23 +01:00
|
|
|
|
|
|
|
clean:
|
2021-03-07 10:14:26 +01:00
|
|
|
latexmk -c -f $(TARGET).tex
|
2021-03-06 21:34:23 +01:00
|
|
|
rm -f *~ *.tex
|
2021-03-07 10:14:26 +01:00
|
|
|
|
|
|
|
cleanall: clean
|
|
|
|
rm $(TARGET).pdf
|