Mercurial > docs > master
annotate makefile @ 236:49d3aa0d128a default tip
style: Removed unused macro code.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Mon, 16 Jul 2012 11:31:25 +0200 |
parents | eba3744fb238 |
children |
rev | line source |
---|---|
0
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
1 NAME = thesis |
174
35fc40a5011d
We won't have an abstract.
markus schnalke <meillo@marmaro.de>
parents:
162
diff
changeset
|
2 CHAPS = style front.roff dedication.roff toc.roff \ |
184
1d28ed59de8a
Added appendix ``tools of mmh''
markus schnalke <meillo@marmaro.de>
parents:
176
diff
changeset
|
3 preface.roff intro.roff discussion.roff summary.roff tools.roff \ |
223
1fa5a74bf138
Reworked References structure: Collect them all in one Chapter.
markus schnalke <meillo@marmaro.de>
parents:
220
diff
changeset
|
4 refs.roff official.roff colophon.roff |
197
05a243dffaca
Added refs to the Preface; splitted the bib.
markus schnalke <meillo@marmaro.de>
parents:
184
diff
changeset
|
5 BIB = bib *.bib |
0
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
6 PDFFLAGS = -sPAPERSIZE=a4 -dPDFSETTINGS=/prepress |
197
05a243dffaca
Added refs to the Preface; splitted the bib.
markus schnalke <meillo@marmaro.de>
parents:
184
diff
changeset
|
7 REFER = refer -n -p bib -p mail.bib -p web.bib -e -P -sLAD -l,2 -k |
0
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
8 |
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
9 all: $(NAME).ps |
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
10 |
197
05a243dffaca
Added refs to the Preface; splitted the bib.
markus schnalke <meillo@marmaro.de>
parents:
184
diff
changeset
|
11 $(NAME).ps: $(CHAPS) makefile $(BIB) toc.ig refs.ig |
150
472aa79f9b6f
bib: Split bib into RFCs and the rest.
markus schnalke <meillo@marmaro.de>
parents:
147
diff
changeset
|
12 export TROFFONTS=fonts;\ |
472aa79f9b6f
bib: Split bib into RFCs and the rest.
markus schnalke <meillo@marmaro.de>
parents:
147
diff
changeset
|
13 soelim $(CHAPS) | $(REFER) | \ |
220
95257474a123
Further improvements in the discussion; added build dependency graphs.
markus schnalke <meillo@marmaro.de>
parents:
198
diff
changeset
|
14 tbl | grap | pic | \ |
95257474a123
Further improvements in the discussion; added build dependency graphs.
markus schnalke <meillo@marmaro.de>
parents:
198
diff
changeset
|
15 troff -Tps -ms -mpictures 2>err.ig | dpost >$@ |
79
f3c95ee96cc4
Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents:
33
diff
changeset
|
16 |
f3c95ee96cc4
Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents:
33
diff
changeset
|
17 err.ig: $(CHAPS) |
150
472aa79f9b6f
bib: Split bib into RFCs and the rest.
markus schnalke <meillo@marmaro.de>
parents:
147
diff
changeset
|
18 export TROFFONTS=fonts;\ |
472aa79f9b6f
bib: Split bib into RFCs and the rest.
markus schnalke <meillo@marmaro.de>
parents:
147
diff
changeset
|
19 soelim $(CHAPS) | $(REFER) | \ |
220
95257474a123
Further improvements in the discussion; added build dependency graphs.
markus schnalke <meillo@marmaro.de>
parents:
198
diff
changeset
|
20 tbl | grap | pic | \ |
95257474a123
Further improvements in the discussion; added build dependency graphs.
markus schnalke <meillo@marmaro.de>
parents:
198
diff
changeset
|
21 troff -Tps -ms -mpictures -rZ1 -z 2>$@ |
79
f3c95ee96cc4
Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents:
33
diff
changeset
|
22 |
f3c95ee96cc4
Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents:
33
diff
changeset
|
23 toc.ig: err.ig |
113
4a1f5ec6220d
makefile: Minor improvements.
markus schnalke <meillo@marmaro.de>
parents:
111
diff
changeset
|
24 sed -n '/^TOC____/s///p' err.ig >$@ |
0
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
25 |
156
db199d51d5b0
makefile: Fixed building of refs.
markus schnalke <meillo@marmaro.de>
parents:
151
diff
changeset
|
26 refs.ig: err.ig |
db199d51d5b0
makefile: Fixed building of refs.
markus schnalke <meillo@marmaro.de>
parents:
151
diff
changeset
|
27 mkdir -p refs |
176
25d05add0d97
Mentioned the source of the Dijkstra quote and fixed the ref system.
markus schnalke <meillo@marmaro.de>
parents:
174
diff
changeset
|
28 awk -F '\t' '/^REF____/{ \ |
151
ff3a6a0e6255
Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents:
150
diff
changeset
|
29 sub(/^REF____/,""); \ |
ff3a6a0e6255
Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents:
150
diff
changeset
|
30 printf $$2 >"refs/"$$1; close("refs/$$1"); \ |
ff3a6a0e6255
Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents:
150
diff
changeset
|
31 printf $$3 >"refs/"$$1".page"; close("refs/$$1.page");\ |
ff3a6a0e6255
Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents:
150
diff
changeset
|
32 }' err.ig |
ff3a6a0e6255
Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents:
150
diff
changeset
|
33 |
0
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
34 pdf: $(NAME).pdf |
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
35 $(NAME).pdf: $(NAME).ps |
115
7dc4867fef91
makefile: Ignore errors of ps2pdf. (Embedding only a subset of the font.)
markus schnalke <meillo@marmaro.de>
parents:
113
diff
changeset
|
36 ps2pdf $(PDFFLAGS) $(NAME).ps 2>/dev/null |
0
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
37 |
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
38 book: book.pdf |
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
39 book.pdf: book.ps |
115
7dc4867fef91
makefile: Ignore errors of ps2pdf. (Embedding only a subset of the font.)
markus schnalke <meillo@marmaro.de>
parents:
113
diff
changeset
|
40 ps2pdf $(PDFFLAGS) book.ps 2>/dev/null |
0
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
41 book.ps: $(NAME).ps |
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
42 psbook -s16 $(NAME).ps | psnup -2 -m2mm >$@ |
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
43 |
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
44 clean: |
dc2bfef4cda7
Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff
changeset
|
45 rm -f $(NAME).ps $(NAME).pdf book.ps book.pdf |
156
db199d51d5b0
makefile: Fixed building of refs.
markus schnalke <meillo@marmaro.de>
parents:
151
diff
changeset
|
46 rm -rf refs |
79
f3c95ee96cc4
Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents:
33
diff
changeset
|
47 rm -f *.ig |