comparison 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
comparison
equal deleted inserted replaced
201:013a13ee0a5f 202:3882f462d02d
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/'`
6 IMG=comm-classification.eps masqmail-arch-new.eps
7
8
9 .PHONY: all
10 all: info $(IMG)
11
12 info:
13 @echo "pictures to generate: $(IMG)"
14
15
16
17 .SUFFIXES: .pic .eps
18 .pic.eps: *.pic
19 @echo ">>>> processing: $*"
20 pic $*.pic | troff -fP | grops | ps2eps -f > $*.eps
21
22
23 .PHONY: clean
24 clean:
25 rm -f `ls *.pic | sed 's/\.pic$$/.eps/'`