statuten/Makefile
2017-07-13 18:29:28 +02:00

13 lines
179 B
Makefile

TEX = latexrun
SRC = $(wildcard content/*.tex)
.PHONY: all clean
all: handbook.pdf
clean:
$(TEX) --clean-all
$(RM) -r latex.out
handbook.pdf: handbook.tex $(SRC)
$(TEX) $<