mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-22 03:49:31 +01:00
17 lines
346 B
Makefile
17 lines
346 B
Makefile
all: gds_braindump_ss16.pdf 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
|