- Add support for the new "phonetic" relation modifier,
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / Makefile
index 029ca04..1394928 100644 (file)
@@ -1,13 +1,11 @@
-# $Id: Makefile,v 1.11 2002-11-14 22:04:16 mike Exp $
+# $Id: Makefile,v 1.12 2002-11-17 23:29:02 mike Exp $
 #
-# Your Java compiler, and javadoc, will require that this source
-# directory is on the classpath.  The best way to do that is just to
-# add the cql-java distribution's "src" subdirectory to your CLASSPATH
-# environment variable, like this:
+# Your Java compiler will require that this source directory is on the
+# classpath.  The best way to do that is just to add the cql-java
+# distribution's "src" subdirectory to your CLASSPATH environment
+# variable, like this:
 #      CLASSPATH=$CLASSPATH:/where/ever/you/unpacked/it/cql-java-VERSION/src
 
-DOCDIR = ../../../../../docs
-
 OBJ = Utils.class \
        CQLNode.class CQLTermNode.class CQLBooleanNode.class \
        CQLAndNode.class CQLOrNode.class CQLNotNode.class \
@@ -25,24 +23,6 @@ OBJ = Utils.class \
 %.class: %.java
        javac $<
 
-docs: $(DOCDIR)/overview-tree.html
-
-$(DOCDIR)/overview-tree.html: *.java
-       nice javadoc -d $(DOCDIR) -author -version \
-               -windowtitle cql-java org.z3950.zing.cql
-
 clean:
        rm -f $(OBJ) 'CQLLexer$$Keyword.class'
 
-cleandocs:
-       rm -rf  $(DOCDIR)/allclasses-frame.html \
-               $(DOCDIR)/deprecated-list.html \
-               $(DOCDIR)/help-doc.html \
-               $(DOCDIR)/index-all.html \
-               $(DOCDIR)/index.html \
-               $(DOCDIR)/org \
-               $(DOCDIR)/overview-tree.html \
-               $(DOCDIR)/package-list \
-               $(DOCDIR)/packages.html \
-               $(DOCDIR)/serialized-form.html \
-               $(DOCDIR)/stylesheet.css