# Makefile for producing the !gua-spi reference manual and dictionary.

all:	guatitle.dvi 

# all:	guatitle.dvi wordchap.dvi englchap.dvi theschap.dvi

guatitle.dvi:	guatitle.tex guarefmn.tex dictintr.tex guaspi.tex guaspi.sty
	echo '\includeonly{guatitle,guarefmn,dictintr}' > selection.tex
	latex guaspi
	mv guaspi.dvi guatitle.dvi

wordchap.dvi:	wordchap.tex guaspi.tex guaspi.sty
	echo '\includeonly{wordchap}' > selection.tex
	latex guaspi
	mv guaspi.dvi wordchap.dvi

englchap.dvi:	englchap.tex guaspi.tex guaspi.sty
	echo '\includeonly{englchap}' > selection.tex
	latex guaspi
	mv guaspi.dvi englchap.dvi

theschap.dvi:	theschap.tex guaspi.tex guaspi.sty
	echo '\includeonly{theschap}' > selection.tex
	latex guaspi
	mv guaspi.dvi theschap.dvi

clean:
	rm -f *.dvi *.log *.aux *.toc selection.tex

