#! /usr/bin/make -f
all: background.bmp
html: all
mkdir -p html
mgp -x vflib -D html speech.mgp
speech.ps: all speech.mgp
mgp2ps -c -t $< > $@
clean:
rm -f speech.ps speech.pdf core
rm -f hierarchy.eps wb-diagram.eps
rm -f .gscache* *~ log
rm -f graph-week.gif graph.gif graph2-week.gif graph2.gif
%.gif: %.png
convert $< $@
%.eps: %.dia
dia --export=$@ $<
%.pdf: %.ps
ps2pdf $^
.PHONY: all clean html