statuten/Makefile

14 lines
179 B
Makefile
Raw Normal View History

2017-07-13 18:29:24 +02:00
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) $<