- Add support for the new "phonetic" relation modifier,
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / Makefile
index b0f160a..1394928 100644 (file)
@@ -1,26 +1,28 @@
-# $Id: Makefile,v 1.4 2002-11-03 16:49:38 mike Exp $
+# $Id: Makefile,v 1.12 2002-11-17 23:29:02 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 $(CLASS)
+       rm -f $(OBJ) 'CQLLexer$$Keyword.class'
 
-cleandocs:
-       rm -r docs/*