Add TEXFLAGS as Makefile variable
This commit is contained in:
parent
6143e0a50a
commit
a0abecc1f4
1 changed files with 4 additions and 2 deletions
6
Makefile
6
Makefile
|
@ -1,4 +1,6 @@
|
||||||
TEX = latexrun
|
TEX = latexrun
|
||||||
|
TEXFLAGS =
|
||||||
|
|
||||||
SRC = $(wildcard content/*.tex)
|
SRC = $(wildcard content/*.tex)
|
||||||
|
|
||||||
.PHONY: all clean
|
.PHONY: all clean
|
||||||
|
@ -10,4 +12,4 @@ clean:
|
||||||
$(RM) -r latex.out
|
$(RM) -r latex.out
|
||||||
|
|
||||||
handbook.pdf: handbook.tex $(SRC)
|
handbook.pdf: handbook.tex $(SRC)
|
||||||
$(TEX) $<
|
$(TEX) $(TEXFLAGS) $<
|
||||||
|
|
Loading…
Reference in a new issue