Mercurial > docs > diploma
annotate thesis/img/Makefile @ 252:6ae903397462
modified sample email and makefile change
author | meillo@marmaro.de |
---|---|
date | Mon, 12 Jan 2009 12:52:05 +0100 |
parents | 35b0dfefd2c4 |
children | 17d5a1b7e7d3 |
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 \ |
202 | 14 |
15 | |
16 .PHONY: all | |
17 all: info $(IMG) | |
18 | |
19 info: | |
20 @echo "pictures to generate: $(IMG)" | |
21 | |
22 | |
23 | |
24 .SUFFIXES: .pic .eps | |
25 .pic.eps: *.pic | |
26 @echo ">>>> processing: $*" | |
27 pic $*.pic | troff -fP | grops | ps2eps -f > $*.eps | |
28 | |
29 | |
30 .PHONY: clean | |
31 clean: | |
32 rm -f `ls *.pic | sed 's/\.pic$$/.eps/'` |