######################################################################### 
#									# 
#   File: scorpion/doc/listererrordb/Makefile 
#				 					# 
#   Copyright (C) 1991 Richard Snodgrass
#									# 
#   The Scorpion System is free software in the public domain; you can  # 
#   redistribute it and/or modify it as you wish. We ask that you 	# 
#   retain credits referencing the University of Arizona and that you	# 
#   identify any changes you make.					# 
#									# 
#   Report problems to scorpion-project@cs.arizona.edu			# 
#   Direct all inquiries to:	The Scorpion Project			# 
#				Department of Computer Science		# 
#				Gould-Simpson Building			# 
#				University of Arizona			# 
#				Tucson, AZ 85721			# 
#				U.S.A.					# 
#									# 
#   Revision Log:							# 
#	$Log:$ 
#									# 
#   Edit Log:								# 
#     Mar 9 1991 (rts) Created.					# 
#									# 
######################################################################### 

LATEX=/usr/local/latex
TEX=/usr/local/tex
PRINT=/usr/ucb/lpr -Plw0
PRINTDVI=/usr/ucb/lpr -Plw0 -d
RM=rm -f

System: cover.dvi document.dvi

Print: cover.dvi document.dvi
	$(PRINTDVI) cover.dvi
	$(PRINTDVI) document.dvi

cover.dvi: cover.tex
	$(TEX) cover.tex

document.dvi: document.tex
	$(LATEX) document.tex
# for the table of contents
	$(LATEX) document.tex

Clean:
	$(RM) *.aux *.dvi *.log *.lof *.ps *~ *.tmp *.out *.toc
