X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Forg%2Fz3950%2Fzing%2Fcql%2FMakefile;h=68087c18e6528fc6cdf269a29d4dc24f7900d3dd;hb=b53fe47e0bd5f0825b0d8ceeb33538e714bf9e7e;hp=fd3a2113c5d4fc35f53db7ce2d58e59754dd8ea0;hpb=df372083094087da8590a526e0222c81c9ae7fc0;p=cql-java-moved-to-github.git diff --git a/src/org/z3950/zing/cql/Makefile b/src/org/z3950/zing/cql/Makefile index fd3a211..68087c1 100644 --- a/src/org/z3950/zing/cql/Makefile +++ b/src/org/z3950/zing/cql/Makefile @@ -1,49 +1,28 @@ -# $Id: Makefile,v 1.7 2002-11-06 00:05:58 mike Exp $ - -DOCDIR = ../../../../../docs +# $Id: Makefile,v 1.16 2007-06-27 22:44:40 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 MissingParameterException.class \ - UnknownQualifierException.class UnknownRelationException.class + CQLProxNode.class CQLPrefixNode.class CQLPrefix.class \ + CQLRelation.class Modifier.class ModifierSet.class \ + CQLParser.class CQLLexer.class CQLGenerator.class \ + CQLParseException.class MissingParameterException.class \ + PQFTranslationException.class \ + UnknownIndexException.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 $< + javac -Xlint:unchecked *.java 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