Closing reported bugs: 617 1591 1592, adding an HTML parser, Daniel
diff --git a/Makefile.am b/Makefile.am
index ed6baaa..07d02f5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -6,7 +6,7 @@
 
 VERSION_FLAGS = -DLIBXML_VERSION=\"@LIBXML_VERSION@\"
 
-noinst_PROGRAMS=tester testSAX
+noinst_PROGRAMS=tester testSAX testHTML
 
 bin_SCRIPTS=xml-config
 
@@ -20,6 +20,7 @@
 		encoding.c \
 		error.c \
 		parser.c \
+		HTMLparser.c \
 		debugXML.c \
 		tree.c \
 		valid.c
@@ -49,6 +50,11 @@
 testSAX_DEPENDENCIES = $(DEPS)
 testSAX_LDADD= $(LDADDS)
 
+testHTML_SOURCES=testHTML.c
+testHTML_LDFLAGS = 
+testHTML_DEPENDENCIES = $(DEPS)
+testHTML_LDADD= $(LDADDS)
+
 check-local: tests
 
 testall : tests SVGtests SAXtests