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

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

a few changes

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