summaryrefslogtreecommitdiff
path: root/10-entwurfsheft/Makefile
blob: 75a951a26b5769df7d4abd4cbb4f0e81346b8c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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