summaryrefslogtreecommitdiffstats
path: root/makefile
blob: ae150e1339277c1bc7d008f5fcaa706dbf87c60a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
TEX := xelatex
TEXARGS := --output-directory=build --halt-on-error

DOCNAME := the_crown_bar
SOURCES := $(DOCNAME).tex tex/docstyle.sty

# include tex/Makefile.inc

.PHONY: clean
all: build/$(DOCNAME).pdf

clean:
	@rm -rfv build

build/$(DOCNAME).pdf : $(SOURCES)
	mkdir -p build
	$(TEX) $(TEXARGS) $<
	$(TEX) $(TEXARGS) $<
	$(TEX) $(TEXARGS) $<