1
0
mirror of https://gitlab.cs.fau.de/ik15ydit/latexandmore.git synced 2025-04-11 23:21:28 +02:00
2017-10-13 12:37:55 +02:00

17 lines
323 B
Makefile

all: gds_braindump_ss17.pdf
continuous: $(PDF).continuous
clean: cleanup
cleanup:
@-rm -f *.aux *.fdb_latexmk *.fls *.log
%.continuous: %.pdf
@latexmk -quiet -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
%.pdf: %.tex
@latexmk -jobname=$(@:%.pdf=%) -pdf -halt-on-error $<
.PHONY: all cleanup clean