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.

1234567891011121314
  1. .PHONY: all
  2. .PRECIOUS: %.tex
  3. all: specification.pdf clean
  4. %.tex: %.reqif
  5. python3 reqif/scripts/parse.py $<
  6. %.pdf: %.tex
  7. latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $<
  8. clean:
  9. latexmk -c
  10. rm -f *~ *.tex