summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 98d14cc89513898f80db250fe6c55847f4b0fcb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
MODE ?= main

.PHONY: all clean

all: main.pdf

main.pdf: figures/timing-1.pdf figures/timing-2.pdf

figures/%.pdf: figures/%.tex
	latexmk -pdf -shell-escape $<
	cp $(notdir $@) $@ || true

# silent structure,structures,pages,resolvers,open source,close source,loading,modules
%.pdf: %.tex
	context --mode=$(MODE) --nonstopmode --silent='*' $<
	cp $(notdir $@) $@ || true