mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-22 19:59:31 +01:00
17 lines
323 B
Makefile
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
|