# WARNING
#
# This Makefile is NOT for installation purposes. Please read the file
# docs/Install.html for information about installing Tix.
#
#
#
#
#
#
warning::
	@ head -10 Makefile
	@ exit 1

.SUFFIXES: .html .txt

DOCS = README.txt

docs::
	cd docs; make docs
	cd man; make docs
	make release-docs
	/home3/ioi/bin/hanno.tcl -v

clean::
	cd docs; make clean
	cd man; make clean

distclean:: clean
	cd docs; make distclean
	cd man; make distclean
	- cd src; make distclean
	- cd demos-c; make distclean

release-docs:: $(DOCS)

.html.txt:
	lynx -dump $< > $@
