source: main/trunk/greenstone2/build-src/src/java/org/nzdl/gsdl/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

File size: 413 bytes
Line 
1JAVAC = @JAVAC@
2JAVACFLAGS = @JAVACFLAGS@
3JAR = jar
4
5CLASSES = ApplyXSLT.class ApplyXSLTUtil.class
6
7all: ApplyXSLT.jar
8
9install:
10
11
12clean:
13 rm -rf *.class ApplyXSLT.jar
14
15ApplyXSLT.jar: $(CLASSES)
16 $(JAR) cvf ApplyXSLT.jar -C ../../.. org/nzdl/gsdl/ApplyXSLT.class \
17 -C ../../.. org/nzdl/gsdl/ApplyXSLTUtil.class
18
19
20%.class : %.java
21 $(JAVAC) $(JAVACFLAGS) -d ../../.. -classpath ../../.. $<
22
23
24distclean: clean
Note: See TracBrowser for help on using the repository browser.