source: main/trunk/greenstone2/runtime-src/src/java/org/nzdl/gsdl/Phind/Makefile.in@ 23356

Last change on this file since 23356 was 23356, checked in by sjm84, 13 years ago

Updated several configure scripts and Makefiles to make use of the JAVA, JAVAC and JAVACFLAGS environment variables, also added a --disable-java option to several of the configure scripts

  • Property svn:keywords set to Author Date Id Revision
File size: 540 bytes
Line 
1JAVAC = @JAVAC@
2JAVACFLAGS = @JAVACFLAGS@
3
4CLASSES = Phind.class ResultCanvas.class ResultItemDocument.class \
5 ResultTitle.class PhindTitle.class ResultDisplay.class \
6 ResultItemLink.class ResultBox.class ResultItem.class \
7 ResultItemPhrase.class PhindTitle.class URLUTF8Encoder.class
8
9all: Phind.jar
10
11install:
12 cp Phind.jar ../../../../../../../web/java/
13
14clean:
15 rm -f $(CLASSES) Phind.jar
16
17Phind.jar: $(CLASSES)
18 jar cf Phind.jar org
19
20%.class : %.java
21 $(JAVAC) $(JAVACFLAGS) -d . -classpath ../../../.. $<
Note: See TracBrowser for help on using the repository browser.