diff --git a/rspec.mk b/rspec.mk index 06179e8..204eeb1 100644 --- a/rspec.mk +++ b/rspec.mk @@ -12,13 +12,19 @@ localhelp: echo -e "\033[1;33m - view - Create a local requirement specification and view the document\e[0m" echo -e "\033[1;33m - release - Create a local requirement specification and copy it to the release folder\e[0m $(MODULE_NAME)/_requirements_" +head: + echo -ne "\n\n\033[1;34m" + echo -e "╔══════════════╗" + echo -e "║ requirements ║" + echo -e "╚══════════════╝\033[00m" + $(TARGET).tex: $(MODULE_NAME)/_requirements_/$(TARGET).py venv/bin/python rspec/__init__.py $(MODULE_NAME)/_requirements_/$(TARGET).py > $(TARGET).tex tex: $(TARGET).tex -$(TARGET).pdf: $(TARGET).tex +$(TARGET).pdf: head $(TARGET).tex latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $(TARGET).tex pdf: $(TARGET).pdf lightclean