docs/diploma

view thesis/img/Makefile @ 255:17d5a1b7e7d3

new diagram
author meillo@marmaro.de
date Tue, 13 Jan 2009 17:17:41 +0100
parents 6ae903397462
children e8ffc2dd9959
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 \
17 .PHONY: all
18 all: info $(IMG)
20 info:
21 @echo "pictures to generate: $(IMG)"
25 .SUFFIXES: .pic .eps
26 .pic.eps: *.pic
27 @echo ">>>> processing: $*"
28 pic $*.pic | troff -fP | grops | ps2eps -f > $*.eps
31 .PHONY: clean
32 clean:
33 rm -f `ls *.pic | sed 's/\.pic$$/.eps/'`