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.

Makefile 534B

123456789101112131415161718192021222324252627
  1. TARGET=specification
  2. MODULE_NAME := $(shell basename `dirname \`pwd\``)
  3. .PHONY: all tex pdf clean cleanall
  4. all: pdf clean
  5. tex:
  6. python3 reqif/scripts/parse.py $(TARGET).reqif
  7. pdf: tex
  8. latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $(TARGET).tex
  9. release: pdf clean
  10. mkdir -p ../pylibs/$(MODULE_NAME)/_requirements_
  11. cp specification.pdf ../pylibs/$(MODULE_NAME)/_requirements_
  12. view: pdf clean
  13. xdg-open $(TARGET).pdf
  14. clean:
  15. latexmk -c -f $(TARGET).tex
  16. rm -f *~ *.tex
  17. cleanall: clean
  18. rm $(TARGET).pdf