# make file

# VARIABLES

#	PLATFORM
	pf=cyg
	pf=unix

# TARGETS

l.dvi, dvi: 	l.tex
	latex l
	
l.ps, ps:	l.tex
	latex l
	divps -o l.ps l

# THESE TARGETS ARE DISABLED FOR SAFETY!
#	REASON: we have since DIRECTLY MODIFIED THE
#	html files!!! 
#
# l.html, html:	l.tex
# 	hyperlatex l
# 	fixhlx

gif:	l.tex
	hyperlatex -gif l
	hyperlatex l
	fixhlx

# BOOKKEEPING
tar:
	tar cvf T.tar Makefile *tex *html prog figs gif

save:
ifeq ($(pf),cyg)
	  -@cp *.html *.c Make* Notes RCS
else
	  -@ci -l *.html *.c Make* Notes 
endif

# END
