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

Last change on this file since 20891 was 20891, checked in by ak19, 14 years ago

Added a distclean target to this new makefile, else running make distclean on gsdl breaks down at this point.

File size: 268 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
[20891]20
21distclean: clean
Note: See TracBrowser for help on using the repository browser.