Mercurial > docs > diploma
annotate thesis/img/Makefile @ 303:7680c80babae
simplified websites.bib
author | meillo@marmaro.de |
---|---|
date | Tue, 20 Jan 2009 12:18:49 +0100 |
parents | e8ffc2dd9959 |
children | f5225dd052cb |
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 \ |
202 | 16 |
17 | |
18 .PHONY: all | |
19 all: info $(IMG) | |
20 | |
21 info: | |
22 @echo "pictures to generate: $(IMG)" | |
23 | |
24 | |
25 | |
26 .SUFFIXES: .pic .eps | |
27 .pic.eps: *.pic | |
28 @echo ">>>> processing: $*" | |
29 pic $*.pic | troff -fP | grops | ps2eps -f > $*.eps | |
30 | |
31 | |
32 .PHONY: clean | |
33 clean: | |
34 rm -f `ls *.pic | sed 's/\.pic$$/.eps/'` |