2012-06-13 11:31:56 +00:00
|
|
|
Index: libmatthew-java-0.8/Makefile
|
|
|
|
===================================================================
|
|
|
|
--- libmatthew-java-0.8.orig/Makefile 2012-05-15 10:19:39.418201897 +0200
|
|
|
|
+++ libmatthew-java-0.8/Makefile 2012-05-15 10:19:41.742201844 +0200
|
|
|
|
@@ -62,11 +62,12 @@
|
2008-09-18 02:40:15 +00:00
|
|
|
io-$(IOVER).jar: .classes
|
|
|
|
(cd classes; $(JAR) cf ../$@ cx/ath/matthew/io/*class)
|
|
|
|
unix-$(UNIXVER).jar: .classes
|
|
|
|
-ifeq ($(DEBUG),enable)
|
|
|
|
- echo "Class-Path: $(JARDIR)/debug-$(DEBUG).jar" > Manifest
|
|
|
|
-else
|
|
|
|
- echo "Class-Path: " > Manifest
|
|
|
|
-endif
|
|
|
|
+#ifeq ($(DEBUG),enable)
|
|
|
|
+# echo "Class-Path: $(JARDIR)/debug-$(DEBUG).jar" > Manifest
|
|
|
|
+#else
|
|
|
|
+# echo "Class-Path: " > Manifest
|
|
|
|
+#endif
|
|
|
|
+ echo > Manifest
|
|
|
|
(cd classes; $(JAR) cfm ../$@ ../Manifest cx/ath/matthew/unix/*class)
|
|
|
|
|
|
|
|
hexdump-$(HEXVER).jar: .classes
|
2012-06-13 11:31:56 +00:00
|
|
|
@@ -91,11 +92,13 @@
|
2008-09-18 02:40:15 +00:00
|
|
|
|
|
|
|
debug-enable-$(DEBUGVER).jar: cx/ath/matthew/debug/Debug.jpp
|
|
|
|
make .enabledebug
|
|
|
|
- echo "Class-Path: $(JARDIR)/hexdump.jar" > Manifest
|
|
|
|
+ #echo "Class-Path: $(JARDIR)/hexdump.jar" > Manifest
|
|
|
|
+ echo > 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: $(JARDIR)/hexdump.jar" > Manifest
|
|
|
|
+ echo > Manifest
|
|
|
|
(cd classes;jar cfm ../$@ ../Manifest cx/ath/matthew/debug/*.class)
|
|
|
|
.enabledebug: cx/ath/matthew/debug/Debug.jpp
|
|
|
|
mkdir -p classes
|