source: main/trunk/greenstone2/common-src/indexers/lucene-gs/Makefile.in@ 29216

Last change on this file since 29216 was 29216, checked in by ak19, 10 years ago

Correction to changes in previous commit to this file. The first time around, the META-INF folder does not yet exist, so we can't copy the license into it yet at that point. Tested.

  • Property svn:keywords set to Author Date Id Revision
File size: 4.2 KB
RevLine 
[23356]1JAVAC = @JAVAC@
2JAVACFLAGS = @JAVACFLAGS@
[19802]3JAR = jar
[29148]4JAVADEBUGFLAGS = #-Xlint:deprecation -Xlint:unchecked
[16709]5
[29148]6LUCENE_VER = 4.7.2
7
8
[24732]9LUCENE3_JAR = ./lib/lucene-core-3.3.0.jar
[29148]10#LUCENE3_JAR = ./lib/lucene-core-3.6.0.jar
[13685]11
[29148]12# To have a manifest file that lists the jar dependencies for a jar file:
13
14# http://docs.oracle.com/javase/tutorial/deployment/jar/downman.html
15# https://blogs.oracle.com/olaf/entry/jdev_including_a_classpath_in
16# http://www.coderanch.com/t/482185/java/java/classpath
17# http://todayguesswhat.blogspot.co.nz/2011/03/jar-manifestmf-class-path-referencing.html
18# http://stackoverflow.com/questions/9684737/class-not-found-despite-of-classpath-in-manifest
19# http://stackoverflow.com/questions/219585/setting-multiple-jars-in-java-classpath
20# JAVA 6 JVM and later allows use of wildcards in classpath
21# http://stackoverflow.com/questions/11607873/escape-wildcard-processing-in-java-classpath/11608165#comment15368871_11608165
22# http://docs.oracle.com/javase/6/docs/technotes/tools/windows/classpath.html
23
24
25LUCENE4_WRAPPER_OBJECTS = \
26 classes4/org/greenstone/LuceneWrapper4/GSLuceneConstants.class \
27 classes4/org/greenstone/LuceneWrapper4/GSLuceneUtil.class \
28 classes4/org/greenstone/LuceneWrapper4/GS2Analyzer.class \
29 classes4/org/greenstone/LuceneWrapper4/GS2LuceneDelete.class \
30 classes4/org/greenstone/LuceneWrapper4/GS2LuceneEditor.class \
31 classes4/org/greenstone/LuceneWrapper4/GS2LuceneIndexer.class \
32 classes4/org/greenstone/LuceneWrapper4/GS2LuceneQuery.class \
33 classes4/org/greenstone/LuceneWrapper4/LuceneQueryResult.class \
34 classes4/org/greenstone/LuceneWrapper4/SharedSoleneQuery.class \
35 classes4/org/greenstone/LuceneWrapper4/SharedSoleneQueryResult.class
36
37LUCENE4_WRAPPER_JAR = LuceneWrapper4.jar
38
39
[24732]40LUCENE3_WRAPPER_OBJECTS = \
41 classes3/org/greenstone/LuceneWrapper3/GS2Analyzer.class \
42 classes3/org/greenstone/LuceneWrapper3/GS2IndexModifier.class \
43 classes3/org/greenstone/LuceneWrapper3/GS2LuceneDelete.class \
44 classes3/org/greenstone/LuceneWrapper3/GS2LuceneEditor.class \
45 classes3/org/greenstone/LuceneWrapper3/GS2LuceneIndexer.class \
46 classes3/org/greenstone/LuceneWrapper3/GS2LuceneQuery.class \
47 classes3/org/greenstone/LuceneWrapper3/LuceneQueryResult.class \
48 classes3/org/greenstone/LuceneWrapper3/SharedSoleneQuery.class \
49 classes3/org/greenstone/LuceneWrapper3/SharedSoleneQueryResult.class
50
51LUCENE3_WRAPPER_JAR = LuceneWrapper3.jar
[13685]52
[24732]53# For now, drop using JAVACFLAGS in compile line, as it typically sets
[29148]54# source and target to 1.4, only Lucene 3.x needs version 1.5 or higher
55classes4/org/greenstone/LuceneWrapper4/%.class: src/org/greenstone/LuceneWrapper4/%.java
56ifeq ($(GSDLOS),windows)
57 mkdir -p classes4 && $(JAVAC) $(JAVADEBUGFLAGS) -classpath "lib/lucene4/*;classes4;." -d classes4 -sourcepath src/ src/org/greenstone/LuceneWrapper4/$*.java
58else
59 mkdir -p classes4 && $(JAVAC) $(JAVADEBUGFLAGS) -classpath "lib/lucene4/*:classes4:." -d classes4 -sourcepath src/ src/org/greenstone/LuceneWrapper4/$*.java
60endif
61
62LuceneWrapper4.jar: $(LUCENE4_WRAPPER_OBJECTS)
[29216]63 cd classes4 && for jar in ../lib/lucene4/*$(LUCENE_VER).jar; do \
64 jar xf $$jar; \
65 done
[29211]66 cp LICENSE.txt classes4/META-INF/LICENSE-LUCENE_WRAPPER.txt
67 cp LICENSE-GPLv2.txt classes4/META-INF/.
68 cp LICENSE-GPLv3.txt classes4/META-INF/.
[29148]69 $(JAR) cf $(LUCENE4_WRAPPER_JAR) -C classes4 .
70
71
[24732]72classes3/org/greenstone/LuceneWrapper3/%.class: src/org/greenstone/LuceneWrapper3/%.java
[28370]73ifeq ($(GSDLOS),windows)
74 mkdir -p classes3 && $(JAVAC) -classpath "$(LUCENE3_JAR);classes3;." -d classes3 -sourcepath src/ src/org/greenstone/LuceneWrapper3/$*.java
75else
[24732]76 mkdir -p classes3 && $(JAVAC) -classpath $(LUCENE3_JAR):classes3:. -d classes3 -sourcepath src/ src/org/greenstone/LuceneWrapper3/$*.java
[28370]77endif
[24732]78
79LuceneWrapper3.jar: $(LUCENE3_WRAPPER_OBJECTS)
80 cd classes3 && jar xf ../$(LUCENE3_JAR)
81 $(JAR) cf $(LUCENE3_WRAPPER_JAR) -C classes3 .
[18813]82
[29148]83
84all: $(LUCENE4_WRAPPER_JAR)
85# $(LUCENE3_WRAPPER_JAR)
[24732]86install: all
87
[13685]88clean:
[29148]89 /bin/rm -f $(LUCENE4_WRAPPER_OBJECTS) $(LUCENE4_WRAPPER_JAR)
[24732]90 /bin/rm -f $(LUCENE3_WRAPPER_OBJECTS) $(LUCENE3_WRAPPER_JAR)
[13702]91
92distclean: clean
[29148]93 if test -e classes4; then /bin/rm -r classes4; fi
94 if test -e $(LUCENE4_WRAPPER_JAR); then /bin/rm -r $(LUCENE4_WRAPPER_JAR); fi
[24732]95 if test -e classes3; then /bin/rm -r classes3; fi
96 if test -e $(LUCENE3_WRAPPER_JAR); then /bin/rm -r $(LUCENE3_WRAPPER_JAR); fi
Note: See TracBrowser for help on using the repository browser.