Makefile für MaC4Cheatsheet

This commit is contained in:
Christian Bay 2015-09-30 17:39:48 +02:00
parent 2afc1130e8
commit e8f92cc33e

22
Public/Makefile Normal file
View File

@ -0,0 +1,22 @@
PDF = MaC4Cheatsheet
all: $(PDF)
continuous: $(PDF).continuous
%.continuous: %.pdf
latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
$(PDF): $(PDF).pdf
%.pdf: %.tex
latexmk -jobname=$(@:%.pdf=%) -pdf $<
clean:
latexmk -c -f $(PDF).tex
distclean:
latexmk -C -f $(PDF).tex
rm -f $(PDF).pdf
.PHONY: all clean distclean $(PDF) continuous