view thesis/img/Makefile @ 294:975769c6c5a5

Added tag sixth preview version for Schaeffter and Traub for changeset 8341092a7554
author meillo@marmaro.de
date Sat, 17 Jan 2009 22:35:32 +0100
parents e8ffc2dd9959
children f5225dd052cb
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 \
stunnel.eps \
mail-agents.eps \
masqmail-typical-usage.eps \
masqmail-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/'`