-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
38 lines (27 loc) · 841 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Author: Daniel Bosk <daniel@bosk.se>
# Date: 27 Dec 2012
.PHONY: all
all: matematik-1.pdf
SRC+= preface.tex
SRC+= intro.tex
SRC+= logik.tex mangder.tex
SRC+= naturliga.tex heltalen.tex talteori.tex
SRC+= rationella.tex reella.tex talsystem.tex
SRC+= ekvationer.tex olikheter.tex potensekvationer.tex
SRC+= geometri.tex trigonometri.tex linjalg.tex
SRC+= procent.tex forandring.tex
SRC+= kombinatorik.tex sannolikhet.tex statistik.tex
SRC+= kursplanering.tex
matematik-1.pdf: matematik-1.tex frontmatter.tex backmatter.tex
matematik-1.pdf: LICENSE
matematik-1.pdf: matematik-1.bib
matematik-1.pdf: ${SRC}
.PHONY: clean
clean:
${RM} figs/*-converted-to.pdf
${RM} matematik-1-1.asy matematik-1-1.pdf matematik-1.pre
.PHONY: wc
wc: ${SRC}
### INCLUDES ###
INCLUDE_MAKEFILES=makefiles
include ${INCLUDE_MAKEFILES}/tex.mk