diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-03 22:03:47 +0200 | 
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-03 22:03:47 +0200 | 
| commit | 7e6e73b123d741eb419e3391fb27c2cc00271bac (patch) | |
| tree | fbfaa94f0071349ff49f63e51c651dbf890d1766 /makefile | |
| parent | f5da5d0d5489481ddb18dcb6088059884efeb024 (diff) | |
add more cruft
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 11 | 
1 files changed, 11 insertions, 0 deletions
| @@ -0,0 +1,11 @@ +all: plan.pdf + +LATEXMKFLAGS += -cd +LATEXMKFLAGS += -interaction=nonstopmode +%.pdf: %.tex +	-latexmk $(LATEXMKFLAGS) $< + +%.puml.pdf: %.puml +	plantuml -tpdf $< +	mv $*.pdf $@ + |