docs/diploma
view thesis/img/Makefile @ 252:6ae903397462
modified sample email and makefile change
author | meillo@marmaro.de |
---|---|
date | Mon, 12 Jan 2009 12:52:05 +0100 |
parents | 35b0dfefd2c4 |
children | 17d5a1b7e7d3 |
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 \
16 .PHONY: all
17 all: info $(IMG)
19 info:
20 @echo "pictures to generate: $(IMG)"
24 .SUFFIXES: .pic .eps
25 .pic.eps: *.pic
26 @echo ">>>> processing: $*"
27 pic $*.pic | troff -fP | grops | ps2eps -f > $*.eps
30 .PHONY: clean
31 clean:
32 rm -f `ls *.pic | sed 's/\.pic$$/.eps/'`