pse-documentation/10-entwurfsheft/Makefile

19 lines
335 B
Makefile
Raw Permalink Normal View History

2024-05-24 17:42:08 +02:00
MAIN = entwurfsheft
FLAGS = -pdf
all: clean compile
compile: diagram tex
clean: clean-diagram clean-tex
dev:
latexmk $(FLAGS) -pvc $(MAIN)
tex:
latexmk $(FLAGS) $(MAIN)
diagram:
java -jar plantuml.jar -tpdf assets/diagrams/*.puml
clean-tex:
latexmk -C
clean-diagram:
find assets/diagrams -type f -not -name '*.puml' -delete