Change project-name capitalisation from "cql-java" to "CQL-Java".
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / Makefile
index 41a310d..910fba8 100644 (file)
@@ -1,37 +1,28 @@
-# $Id: Makefile,v 1.5 2002-11-03 17:02:48 mike Exp $
+# $Id: Makefile,v 1.13 2002-12-09 16:29:44 mike Exp $
+#
+# 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
 
 OBJ = Utils.class \
        CQLNode.class CQLTermNode.class CQLBooleanNode.class \
        CQLAndNode.class CQLOrNode.class CQLNotNode.class \
-       CQLRelation.class CQLProxNode.class ModifierSet.class \
-       CQLParser.class CQLLexer.class CQLParseException.class \
-       CQLGenerator.class ParameterMissingException.class
+       CQLProxNode.class CQLPrefixNode.class CQLPrefix.class \
+       CQLRelation.class ModifierSet.class \
+       CQLParser.class CQLLexer.class CQLGenerator.class \
+       CQLParseException.class MissingParameterException.class \
+       PQFTranslationException.class \
+       UnknownQualifierException.class UnknownRelationException.class \
+       UnknownRelationModifierException.class UnknownPositionException.class
 
 ../../../../../lib/cql-java.jar: $(OBJ)
        cd ../../../..; jar cf ../lib/cql-java.jar org/z3950/zing/cql/*.class
 
-docs: ../../../../../docs/overview-tree.html
-
-../../../../../docs/overview-tree.html: *.java
-       nice javadoc -d ../../../../../docs -author -version \
-               -windowtitle cql-java org.z3950.zing.cql
-
 %.class: %.java
        javac $<
 
 clean:
        rm -f $(OBJ) 'CQLLexer$$Keyword.class'
 
-cleandocs:
-       rm -rf \
-               ../../../../../docs/allclasses-frame.html \
-               ../../../../../docs/deprecated-list.html \
-               ../../../../../docs/help-doc.html \
-               ../../../../../docs/index-all.html \
-               ../../../../../docs/index.html \
-               ../../../../../docs/org \
-               ../../../../../docs/overview-tree.html \
-               ../../../../../docs/package-list \
-               ../../../../../docs/packages.html \
-               ../../../../../docs/serialized-form.html \
-               ../../../../../docs/stylesheet.css