X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Forg%2Fz3950%2Fzing%2Fcql%2FMakefile;h=910fba8f9fa422f9533748c3588f235d40317f7a;hb=57b8aeb26a6aacaa478e6886ade3e40ca6eae2bb;hp=5b2ca73de42e91bbffc5b3f521a69fea53429c7d;hpb=ea340fa93649ce6a3bda915ec0dbae585db3df62;p=cql-java-moved-to-github.git diff --git a/src/org/z3950/zing/cql/Makefile b/src/org/z3950/zing/cql/Makefile index 5b2ca73..910fba8 100644 --- a/src/org/z3950/zing/cql/Makefile +++ b/src/org/z3950/zing/cql/Makefile @@ -1,48 +1,28 @@ -# $Id: Makefile,v 1.6 2002-11-04 12:55:23 mike Exp $ - -DOCDIR = ../../../../../docs +# $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: $(DOCDIR)/overview-tree.html - -$(DOCDIR)/overview-tree.html: *.java - nice javadoc -d $(DOCDIR) -author -version \ - -windowtitle cql-java org.z3950.zing.cql - -# Your Java compiler will require that this source directory is on the -# CLASSPATH. You can either set your CLASSPATH environment variable -# to include /where/ever/you/unpacked/it/cql-java-VERSION/src or try -# changing the rule below to: -# -# javac -classpath ../../../.. $< -# -# (But that will break if you need other elements in the CLASSPATH -# too, for the Java library -- as, for example, Jikes does.) -# %.class: %.java javac $< 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