statuten/Makefile

16 lines
208 B
Makefile
Raw Normal View History

2017-07-21 18:29:25 +02:00
TEX = latexrun
TEXFLAGS =
2017-07-13 18:29:24 +02:00
SRC = $(wildcard content/*.tex)
.PHONY: all clean
all: handbook.pdf
clean:
$(TEX) --clean-all
$(RM) -r latex.out
handbook.pdf: handbook.tex $(SRC)
2017-07-21 18:29:25 +02:00
$(TEX) $(TEXFLAGS) $<