Project And Teamorganisation Tool
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 428B

1234567891011121314151617
  1. SPEC_FILENAME=requirements
  2. .PHONY: specification
  3. specification:
  4. venv/bin/python reqif/__init__.py $(SPEC_FILENAME).reqif
  5. @$(MAKE) --no-print-directory clean
  6. xdg-open $(SPEC_FILENAME).pdf
  7. clean:
  8. @echo Removing generated files for target
  9. @rm -f $(SPEC_FILENAME).tex $(SPEC_FILENAME).aux $(SPEC_FILENAME).log $(SPEC_FILENAME).out $(SPEC_FILENAME).toc *~
  10. cleanall: clean
  11. @echo Removing target
  12. @rm -f $(SPEC_FILENAME).pdf