view thesis/img/Makefile @ 342:160de840edf9

added links to articles of fanf
author meillo@marmaro.de
date Mon, 26 Jan 2009 16:01:34 +0100 (2009-01-26)
parents c4d78cd40827
children
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 \
proxy-setup.eps \
ipc-protocol.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/'`