Mercurial > docs > diploma
comparison thesis/fig/Makefile @ 397:13e630c5a44d
rename img -> fig
author | meillo@marmaro.de |
---|---|
date | Sat, 07 Feb 2009 22:39:07 +0100 |
parents | thesis/img/Makefile@c4d78cd40827 |
children | a641bea7a087 |
comparison
equal
deleted
inserted
replaced
396:8ef85e22ff7d | 397:13e630c5a44d |
---|---|
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/'` | |
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 | |
19 | |
20 .PHONY: all | |
21 all: info $(IMG) | |
22 | |
23 info: | |
24 @echo "pictures to generate: $(IMG)" | |
25 | |
26 | |
27 | |
28 .SUFFIXES: .pic .eps | |
29 .pic.eps: *.pic | |
30 @echo ">>>> processing: $*" | |
31 pic $*.pic | troff -fP | grops | ps2eps -f > $*.eps | |
32 | |
33 | |
34 .PHONY: clean | |
35 clean: | |
36 rm -f `ls *.pic | sed 's/\.pic$$/.eps/'` |