X-Git-Url: http://git.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Forg%2Fz3950%2Fzing%2Fcql%2FMakefile;h=910fba8f9fa422f9533748c3588f235d40317f7a;hb=aaafb116f81536ca6f842885f4a64fbc3c345b99;hp=acd7ccc437375732447aa012bb48a913c89a7545;hpb=e52d49ef72a0d4531500e3e790fbe2e47fda8cba;p=cql-java-moved-to-github.git diff --git a/src/org/z3950/zing/cql/Makefile b/src/org/z3950/zing/cql/Makefile index acd7ccc..910fba8 100644 --- a/src/org/z3950/zing/cql/Makefile +++ b/src/org/z3950/zing/cql/Makefile @@ -1,18 +1,28 @@ -# $Id: Makefile,v 1.1 2002-10-25 07:38:17 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 -all: CQLNode.class CQLTermNode.class CQLBooleanNode.class \ +OBJ = Utils.class \ + CQLNode.class CQLTermNode.class CQLBooleanNode.class \ CQLAndNode.class CQLOrNode.class CQLNotNode.class \ - CQLParser.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 -javadocs: - 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 $< clean: - rm -f *.class + rm -f $(OBJ) 'CQLLexer$$Keyword.class' -cleandocs: - rm -r docs/*