source: gsdl/trunk/build-src/src/java/org/nzdl/gsdl/Makefile@ 20872

Last change on this file since 20872 was 20872, checked in by kjdon, 14 years ago

adding makefiles for applyxslt

File size: 271 bytes
RevLine 
[20872]1JAVAC = javac
2JAR = jar
3
4CLASSES = ApplyXSLT.class ApplyXSLTUtil.class
5
6all: ApplyXSLT.jar
7
8install:
9
10
11clean:
12 rm -f $(CLASSES) ApplyXSLT.jar
13
14ApplyXSLT.jar: $(CLASSES)
15 $(JAR) cf ApplyXSLT.jar org
16
17%.class : %.java
18 $(JAVAC) -target 1.1 -d . -classpath ../../../.. $<
19
Note: See TracBrowser for help on using the repository browser.