head added to make rules

This commit is contained in:
Dirk Alders 2025-08-15 19:15:49 +02:00
parent 779a6d0a1c
commit 871ea528c0

View File

@ -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