1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: Michael Haggerty <mhagger@alum.mit.edu>
Subject: Use relative paths for entries in the package class path
--- a/Makefile
+++ b/Makefile
@@ -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
|