annotate makefile @ 155:75f20c925999

Fixed macro typo; and added typo fix found by Boris.
author markus schnalke <meillo@marmaro.de>
date Fri, 06 Jul 2012 21:11:09 +0200
parents ff3a6a0e6255
children db199d51d5b0
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
151
ff3a6a0e6255 Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents: 150
diff changeset
10 $(NAME).ps: $(CHAPS) makefile bib rfcs toc.ig refs
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
151
ff3a6a0e6255 Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents: 150
diff changeset
23 refs: err.ig
ff3a6a0e6255 Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents: 150
diff changeset
24 awk '/^REF____/{ \
ff3a6a0e6255 Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents: 150
diff changeset
25 sub(/^REF____/,""); \
ff3a6a0e6255 Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents: 150
diff changeset
26 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
27 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
28 }' err.ig
ff3a6a0e6255 Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents: 150
diff changeset
29
0
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
30 pdf: $(NAME).pdf
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
31 $(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
32 ps2pdf $(PDFFLAGS) $(NAME).ps 2>/dev/null
0
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
33
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
34 book: book.pdf
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
35 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
36 ps2pdf $(PDFFLAGS) book.ps 2>/dev/null
0
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
37 book.ps: $(NAME).ps
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
38 psbook -s16 $(NAME).ps | psnup -2 -m2mm >$@
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
39
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
40 clean:
dc2bfef4cda7 Initial commit: Basic structure, macros and fonts.
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
41 rm -f $(NAME).ps $(NAME).pdf book.ps book.pdf
151
ff3a6a0e6255 Added system for references within the document. Macros: .Id and .Cf.
markus schnalke <meillo@marmaro.de>
parents: 150
diff changeset
42 rm -f refs/*
79
f3c95ee96cc4 Moved TOC from end to beginning; extended makefile.
markus schnalke <meillo@marmaro.de>
parents: 33
diff changeset
43 rm -f *.ig
111
8800dbbaedc5 makefile: Target `spell' to help with spell checking.
markus schnalke <meillo@marmaro.de>
parents: 107
diff changeset
44
8800dbbaedc5 makefile: Target `spell' to help with spell checking.
markus schnalke <meillo@marmaro.de>
parents: 107
diff changeset
45 spell:
121
edbc6e1dc636 New text on Standard Libraries plus spellchecking.
markus schnalke <meillo@marmaro.de>
parents: 115
diff changeset
46 sort -u -o terms terms
111
8800dbbaedc5 makefile: Target `spell' to help with spell checking.
markus schnalke <meillo@marmaro.de>
parents: 107
diff changeset
47 spell +terms *.roff | egrep -v '[0-9a-f]{40}'