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