summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 753f1de88da62da9faba81188d97b9a726d8f9be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
TEXFLAGS ?= -halt-on-error -output-format pdf -output-directory output --shell-escape
TITLE = slides

.PHONY: all clean

all: output/$(TITLE).pdf

output:
	mkdir output

output/$(TITLE).pdf: $(TITLE).tex output
	pdflatex $(TEXFLAGS) '\providecommand\locale{en}\input{$(TITLE).tex}'
	pdflatex $(TEXFLAGS) '\providecommand\locale{en}\input{$(TITLE).tex}'

clean:
	rm -rf output svg-inkscape