
SHELL = /bin/sh
MAIN = manual.tex
TARGET = manual.dvi
SRCS = manual.tex intro.tex conventions.tex utils.tex menu.tex \
	wcontext.tex
OBJS = 


.SUFFIXES:

.SUFFIXES: .dvi .tex 

# I'm not sure how to make the .clutex's from a .clu in another
# directory.

$(TARGET): $(SRCS)
	latex $(MAIN)
	latex $(MAIN)

clean: 
	rm *.dvi *.log *.aux

