X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Forg%2Fz3950%2Fzing%2Fcql%2FMakefile;h=fed51f709ba302e6fd41a3de42d52f90e075124a;hb=f3c88fe15ee06a671407a0368e449db991526802;hp=e91d911c3a3888842c919ff7ec1092a262b1ec49;hpb=f8154c71944186a9b64ddb782082a2026c5a912f;p=cql-java-moved-to-github.git diff --git a/src/org/z3950/zing/cql/Makefile b/src/org/z3950/zing/cql/Makefile index e91d911..fed51f7 100644 --- a/src/org/z3950/zing/cql/Makefile +++ b/src/org/z3950/zing/cql/Makefile @@ -1,21 +1,28 @@ -# $Id: Makefile,v 1.3 2002-10-31 22:22:01 mike Exp $ +# $Id: Makefile,v 1.14 2007-06-06 12:21:46 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 -all: Utils.class \ +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 -docs: - nice javadoc -d ../../../../../docs -author -version \ - -windowtitle cql-java org.z3950.zing.cql +../../../../../lib/cql-java.jar: $(OBJ) + cd ../../../..; jar cf ../lib/cql-java.jar org/z3950/zing/cql/*.class %.class: %.java - javac $< + javac -Xlint:unchecked *.java clean: - rm -f *.class + rm -f $(OBJ) 'CQLLexer$$Keyword.class' -cleandocs: - rm -r docs/*