view thesis/img/Makefile @ 229:c5f44219bc5d

added text parts to intro
author meillo@marmaro.de
date Fri, 09 Jan 2009 14:22:06 +0100
parents 265f3f9dd44a
children 35b0dfefd2c4
line wrap: on
line source

# generate clipped EPS pictures of PIC files
#
# requires: pic, troff (with font Palatino), grops, ps2eps

#IMG=`ls *.pic | sed 's/\.pic$$/.eps/'`
IMG=comm-classification.eps masqmail-arch-new.eps comm-lifecycle.eps email-swot.eps mta-channels.eps


.PHONY: all
all: info $(IMG)

info:
	@echo "pictures to generate: $(IMG)"



.SUFFIXES: .pic .eps
.pic.eps: *.pic
	@echo ">>>> processing: $*"
	pic $*.pic | troff -fP | grops | ps2eps -f > $*.eps


.PHONY: clean
clean:
	rm -f `ls *.pic | sed 's/\.pic$$/.eps/'`