source: trunk/indexers/lucene-gs/src/org/greenstone/LuceneWrapper/Makefile@ 13558

Last change on this file since 13558 was 13558, checked in by kjdon, 17 years ago

fixed up the clean command

  • Property svn:keywords set to Author Date Id Revision
File size: 361 bytes
Line 
1LUCENE_JAR = ./lib/lucene-core-2.0.0.jar
2CLASSPATH = $(LUCENE_JAR):classes
3
4
5compile:
6 mkdir -p classes
7 javac -classpath $(CLASSPATH):. -d classes *.java
8
9jar:
10 cd classes && jar xf ../$(LUCENE_JAR)
11 jar cvf LuceneWrap.jar -C classes .
12
13install:
14 install LuceneWrap.jar ../../../../../../bin/java/.
15
16clean:
17 /bin/rm -f classes/org/nzdl/gsdl/LuceneWrap/*.class
Note: See TracBrowser for help on using the repository browser.