docs/diploma

view thesis/img/Makefile @ 206:b9ff5873f701

updated Makefile
author meillo@marmaro.de
date Sun, 04 Jan 2009 10:06:30 +0100
parents 3882f462d02d
children 265f3f9dd44a
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
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/'`