docs/diploma

view thesis/img/Makefile @ 202:3882f462d02d

added first PIC pictures plus Makefile
author meillo@marmaro.de
date Thu, 01 Jan 2009 21:32:19 +0100
parents
children b9ff5873f701
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
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/'`