docs/diploma

view thesis/fig/Makefile @ 399:a641bea7a087

added source for call graph, modified Makefile; adjusted includegraphics
author meillo@marmaro.de
date Sat, 07 Feb 2009 22:51:17 +0100
parents 13e630c5a44d
children
line source
1 # generate clipped EPS pictures of PIC files
2 #
3 # requires: pic, troff (with font Palatino), grops, ps2eps
5 #IMG=`ls *.pic | sed 's/\.pic$$/.eps/'`
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 \
13 mail-agents.eps \
14 masqmail-typical-usage.eps \
15 masqmail-channels.eps \
16 proxy-setup.eps \
17 ipc-protocol.eps \
18 callgraph.eps \
21 .PHONY: all
22 all: info $(IMG)
24 info:
25 @echo "pictures to generate: $(IMG)"
29 .SUFFIXES: .pic .eps
30 .pic.eps: *.pic
31 @echo ">>>> processing: $*"
32 pic $*.pic | troff -fP | grops | ps2eps -f > $*.eps
34 .SUFFIXES: .ps .eps
35 .ps.eps: *.ps
36 @echo ">>>> processing: $*"
37 ps2eps -f $*.ps > $*.eps
40 .PHONY: clean
41 clean:
42 rm -f `ls *.pic | sed 's/\.pic$$/.eps/'`