# WARNING
#
# This Makefile is NOT for installation purposes. Please read the file
# docs/Install.html for information about installing Tix.
#
#
#
#
#
#

.SUFFIXES: .html .txt

TXT =  FAQ.txt Install.txt Release-4.1a2.txt Release-4.1a3.txt Release.txt


warning::
	@ head -10 Makefile
	@ exit 1

docs: html txt

html:: FAQ.html

txt:: $(TXT)

FAQ.html: FAQ.tcl
	tclsh FAQ.tcl > FAQ.html

.html.txt:
	lynx -underscore -dump $< | skipblank.tcl > $@

clean::
	- rm -f *~

distclean: clean


