Mercurial > docs > diploma
annotate thesis/img/Makefile @ 372:6477e7827617
added scripts for improved index generation and complete bibtex generation
author | meillo@marmaro.de |
---|---|
date | Sat, 31 Jan 2009 20:07:58 +0100 |
parents | c4d78cd40827 |
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 \ |
202 | 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/'` |