annotate makefile @ 189:22feb390ccc4

Applied suggestions by Lydi.
author markus schnalke <meillo@marmaro.de>
date Wed, 11 Jul 2012 15:53:53 +0200
parents 1d28ed59de8a
children 05a243dffaca
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 \
1d28ed59de8a Added appendix ``tools of mmh''
markus schnalke <meillo@marmaro.de>
parents: 176
diff changeset
4 refs.roff official.roff colophon.roff
0
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
5 PDFFLAGS = -sPAPERSIZE=a4 -dPDFSETTINGS=/prepress
150
472aa79f9b6f bib: Split bib into RFCs and the rest.
markus schnalke <meillo@marmaro.de>
parents: 147
diff changeset
6 REFER = refer -n -p bib -p rfcs -e -P -sLAD -l,2 -k
0
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
7
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
8 all: $(NAME).ps
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
9
156
db199d51d5b0 makefile: Fixed building of refs.
markus schnalke <meillo@marmaro.de>
parents: 151
diff changeset
10 $(NAME).ps: $(CHAPS) makefile bib rfcs toc.ig refs.ig
150
472aa79f9b6f bib: Split bib into RFCs and the rest.
markus schnalke <meillo@marmaro.de>
parents: 147
diff changeset
11 export TROFFONTS=fonts;\
472aa79f9b6f bib: Split bib into RFCs and the rest.
markus schnalke <meillo@marmaro.de>
parents: 147
diff changeset
12 soelim $(CHAPS) | $(REFER) | \
184
1d28ed59de8a Added appendix ``tools of mmh''
markus schnalke <meillo@marmaro.de>
parents: 176
diff changeset
13 tbl | grap | pic | troff -Tps -ms 2>err.ig | dpost >$@
79
f3c95ee96cc4 Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents: 33
diff changeset
14
f3c95ee96cc4 Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents: 33
diff changeset
15 err.ig: $(CHAPS)
150
472aa79f9b6f bib: Split bib into RFCs and the rest.
markus schnalke <meillo@marmaro.de>
parents: 147
diff changeset
16 export TROFFONTS=fonts;\
472aa79f9b6f bib: Split bib into RFCs and the rest.
markus schnalke <meillo@marmaro.de>
parents: 147
diff changeset
17 soelim $(CHAPS) | $(REFER) | \
184
1d28ed59de8a Added appendix ``tools of mmh''
markus schnalke <meillo@marmaro.de>
parents: 176
diff changeset
18 tbl | grap | pic | troff -Tps -ms -rZ1 -z 2>$@
79
f3c95ee96cc4 Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents: 33
diff changeset
19
f3c95ee96cc4 Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents: 33
diff changeset
20 toc.ig: err.ig
113
4a1f5ec6220d makefile: Minor improvements.
markus schnalke <meillo@marmaro.de>
parents: 111
diff changeset
21 sed -n '/^TOC____/s///p' err.ig >$@
0
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
22
156
db199d51d5b0 makefile: Fixed building of refs.
markus schnalke <meillo@marmaro.de>
parents: 151
diff changeset
23 refs.ig: err.ig
db199d51d5b0 makefile: Fixed building of refs.
markus schnalke <meillo@marmaro.de>
parents: 151
diff changeset
24 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
25 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
26 sub(/^REF____/,""); \
ff3a6a0e6255 Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents: 150
diff changeset
27 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
28 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
29 }' err.ig
ff3a6a0e6255 Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents: 150
diff changeset
30
0
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
31 pdf: $(NAME).pdf
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
32 $(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
33 ps2pdf $(PDFFLAGS) $(NAME).ps 2>/dev/null
0
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
34
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
35 book: book.pdf
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
36 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
37 ps2pdf $(PDFFLAGS) book.ps 2>/dev/null
0
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
38 book.ps: $(NAME).ps
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
39 psbook -s16 $(NAME).ps | psnup -2 -m2mm >$@
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
40
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
41 clean:
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
42 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
43 rm -rf refs
79
f3c95ee96cc4 Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents: 33
diff changeset
44 rm -f *.ig
111
8800dbbaedc5 makefile: Target `spell' to help with spell checking.
markus schnalke <meillo@marmaro.de>
parents: 107
diff changeset
45
8800dbbaedc5 makefile: Target `spell' to help with spell checking.
markus schnalke <meillo@marmaro.de>
parents: 107
diff changeset
46 spell:
121
edbc6e1dc636 New text on Standard Libraries plus spellchecking.
markus schnalke <meillo@marmaro.de>
parents: 115
diff changeset
47 sort -u -o terms terms
111
8800dbbaedc5 makefile: Target `spell' to help with spell checking.
markus schnalke <meillo@marmaro.de>
parents: 107
diff changeset
48 spell +terms *.roff | egrep -v '[0-9a-f]{40}'