source: trunk/gsdl/src/java/org/nzdl/gsdl/LuceneWrap/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
RevLine 
[12255]1LUCENE_JAR = ./lib/lucene-core-2.0.0.jar
2CLASSPATH = $(LUCENE_JAR):classes
[8521]3
4
5compile:
[12242]6 mkdir -p classes
[8521]7 javac -classpath $(CLASSPATH):. -d classes *.java
8
9jar:
[12255]10 cd classes && jar xf ../$(LUCENE_JAR)
[8521]11 jar cvf LuceneWrap.jar -C classes .
12
13install:
14 install LuceneWrap.jar ../../../../../../bin/java/.
15
16clean:
[13558]17 /bin/rm -f classes/org/nzdl/gsdl/LuceneWrap/*.class
Note: See TracBrowser for help on using the repository browser.