Add TEXFLAGS as Makefile variable

This commit is contained in:
Alex Hirsch 2017-07-21 18:29:25 +02:00
parent 6143e0a50a
commit a0abecc1f4

View file

@ -1,4 +1,6 @@
TEX = latexrun
TEX = latexrun
TEXFLAGS =
SRC = $(wildcard content/*.tex)
.PHONY: all clean
@ -10,4 +12,4 @@ clean:
$(RM) -r latex.out
handbook.pdf: handbook.tex $(SRC)
$(TEX) $<
$(TEX) $(TEXFLAGS) $<