Python Library REQ-IF
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718
  1. TARGET=specification
  2. .PHONY: all tex pdf clean cleanall
  3. all: pdf clean
  4. tex:
  5. python3 reqif/scripts/parse.py $(TARGET).reqif
  6. pdf: tex
  7. latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $(TARGET).tex
  8. clean:
  9. latexmk -c -f $(TARGET).tex
  10. rm -f *~ *.tex
  11. cleanall: clean
  12. rm $(TARGET).pdf