Mercurial > docs > diploma
annotate thesis/fig/Makefile @ 409:ca763bd8c809 default tip
Added tag final version which I handed in for changeset ee7211546c02
author | meillo@marmaro.de |
---|---|
date | Wed, 11 Feb 2009 08:55:32 +0100 |
parents | a641bea7a087 |
children |
rev | line source |
---|---|
202 | 1 # generate clipped EPS pictures of PIC files |
2 # | |
3 # requires: pic, troff (with font Palatino), grops, ps2eps | |
4 | |
5 #IMG=`ls *.pic | sed 's/\.pic$$/.eps/'` | |
230 | 6 IMG=\ |
7 comm-classification.eps \ | |
8 masqmail-arch-new.eps \ | |
9 comm-lifecycle.eps \ | |
10 email-swot.eps \ | |
11 mta-channels.eps \ | |
12 stunnel.eps \ | |
252
6ae903397462
modified sample email and makefile change
meillo@marmaro.de
parents:
230
diff
changeset
|
13 mail-agents.eps \ |
255 | 14 masqmail-typical-usage.eps \ |
258 | 15 masqmail-channels.eps \ |
325 | 16 proxy-setup.eps \ |
329 | 17 ipc-protocol.eps \ |
399
a641bea7a087
added source for call graph, modified Makefile; adjusted includegraphics
meillo@marmaro.de
parents:
397
diff
changeset
|
18 callgraph.eps \ |
202 | 19 |
20 | |
21 .PHONY: all | |
22 all: info $(IMG) | |
23 | |
24 info: | |
25 @echo "pictures to generate: $(IMG)" | |
26 | |
27 | |
28 | |
29 .SUFFIXES: .pic .eps | |
30 .pic.eps: *.pic | |
31 @echo ">>>> processing: $*" | |
32 pic $*.pic | troff -fP | grops | ps2eps -f > $*.eps | |
33 | |
399
a641bea7a087
added source for call graph, modified Makefile; adjusted includegraphics
meillo@marmaro.de
parents:
397
diff
changeset
|
34 .SUFFIXES: .ps .eps |
a641bea7a087
added source for call graph, modified Makefile; adjusted includegraphics
meillo@marmaro.de
parents:
397
diff
changeset
|
35 .ps.eps: *.ps |
a641bea7a087
added source for call graph, modified Makefile; adjusted includegraphics
meillo@marmaro.de
parents:
397
diff
changeset
|
36 @echo ">>>> processing: $*" |
a641bea7a087
added source for call graph, modified Makefile; adjusted includegraphics
meillo@marmaro.de
parents:
397
diff
changeset
|
37 ps2eps -f $*.ps > $*.eps |
a641bea7a087
added source for call graph, modified Makefile; adjusted includegraphics
meillo@marmaro.de
parents:
397
diff
changeset
|
38 |
202 | 39 |
40 .PHONY: clean | |
41 clean: | |
42 rm -f `ls *.pic | sed 's/\.pic$$/.eps/'` |