annotate makefile @ 156:db199d51d5b0

makefile: Fixed building of refs.
author markus schnalke <meillo@marmaro.de>
date Sat, 07 Jul 2012 14:41:35 +0200
parents ff3a6a0e6255
children 5520bbde3767
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
79
f3c95ee96cc4 Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents: 33
diff changeset
2 CHAPS = style front.roff dedication.roff abstract.roff toc.roff \
147
e7b5e465a8e0 Added the confirmation of own work and a colophon, listing the tools used.
markus schnalke <meillo@marmaro.de>
parents: 132
diff changeset
3 preface.roff intro.roff discussion.roff future.roff refs.roff \
e7b5e465a8e0 Added the confirmation of own work and a colophon, listing the tools used.
markus schnalke <meillo@marmaro.de>
parents: 132
diff changeset
4 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) | \
92
e6f95015ba61 Added a grap diagram. Needed to adjust the makefile (soelim, grap, pic).
markus schnalke <meillo@marmaro.de>
parents: 79
diff changeset
13 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) | \
92
e6f95015ba61 Added a grap diagram. Needed to adjust the makefile (soelim, grap, pic).
markus schnalke <meillo@marmaro.de>
parents: 79
diff changeset
18 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
151
ff3a6a0e6255 Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents: 150
diff changeset
25 awk '/^REF____/{ \
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}'