view thesis/img/Makefile @ 205:aa14d1925151

added new pictures; updated makefile
author meillo@marmaro.de
date Sun, 04 Jan 2009 10:05:56 +0100
parents 3882f462d02d
children b9ff5873f701
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


.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/'`