diff -ur libmatthew-java-0.7.2-orig/Makefile libmatthew-java-0.7.2/Makefile --- libmatthew-java-0.7.2-orig/Makefile 2010-12-14 09:40:37.000000000 +0100 +++ libmatthew-java-0.7.2/Makefile 2010-12-14 09:42:33.000000000 +0100 @@ -63,7 +63,7 @@ (cd classes; $(JAR) cf ../$@ cx/ath/matthew/io/*class) unix-$(UNIXVER).jar: .classes ifeq ($(DEBUG),enable) - echo "Class-Path: $(JARDIR)/debug-$(DEBUG).jar" > Manifest + echo "Class-Path: debug-$(DEBUG).jar" > Manifest else echo "Class-Path: " > Manifest endif @@ -91,11 +91,11 @@ debug-enable-$(DEBUGVER).jar: cx/ath/matthew/debug/Debug.jpp make .enabledebug - echo "Class-Path: $(JARDIR)/hexdump.jar" > Manifest + echo "Class-Path: hexdump.jar" > Manifest (cd classes;jar cfm ../$@ ../Manifest cx/ath/matthew/debug/*.class) debug-disable-$(DEBUGVER).jar: cx/ath/matthew/debug/Debug.jpp make .disabledebug - echo "Class-Path: $(JARDIR)/hexdump.jar" > Manifest + echo "Class-Path: hexdump.jar" > Manifest (cd classes;jar cfm ../$@ ../Manifest cx/ath/matthew/debug/*.class) .enabledebug: cx/ath/matthew/debug/Debug.jpp mkdir -p classes Only in libmatthew-java-0.7.2: Makefile~