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

.PHONY: all clean

all: main.pdf

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

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

chapters/scheduling.pdf: figures/timing-3.pdf

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