JAVAC = javac JAR = jar CLASSES = ApplyXSLT.class ApplyXSLTUtil.class all: ApplyXSLT.jar install: clean: rm -f $(CLASSES) ApplyXSLT.jar ApplyXSLT.jar: $(CLASSES) $(JAR) cf ApplyXSLT.jar org %.class : %.java $(JAVAC) -target 1.1 -d . -classpath ../../../.. $<