docs/diploma

view thesis/img/Makefile @ 228:265f3f9dd44a

added pic on in out channels of mta
author meillo@marmaro.de
date Fri, 09 Jan 2009 14:21:45 +0100
parents b9ff5873f701
children 35b0dfefd2c4
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=comm-classification.eps masqmail-arch-new.eps comm-lifecycle.eps email-swot.eps mta-channels.eps
9 .PHONY: all
10 all: info $(IMG)
12 info:
13 @echo "pictures to generate: $(IMG)"
17 .SUFFIXES: .pic .eps
18 .pic.eps: *.pic
19 @echo ">>>> processing: $*"
20 pic $*.pic | troff -fP | grops | ps2eps -f > $*.eps
23 .PHONY: clean
24 clean:
25 rm -f `ls *.pic | sed 's/\.pic$$/.eps/'`