This is the mail archive of the java-patches@sourceware.cygnus.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A makefile patch for libgcj


Here is a patch for libgcj 2.95.1. The problem is $(javao_files) needs
libgcj.zip. But there is no dependency. It causes a problem for the
pareallel build.


-- 
H.J. Lu (hjl@gnu.org)
--
--- libjava/Makefile.am.parallel	Sat Apr  1 16:47:57 2000
+++ libjava/Makefile.am	Sat Apr  1 17:21:31 2000
@@ -155,6 +155,8 @@ $(c_files): java/lang/fdlibm.h java/lang
 $(javao_files): %.lo: %.java
 	$(GCJCOMPILE) -o $@ $<
 
+$(javao_files): libgcj.zip
+
 ## ################################################################
 
 ##
--- libjava/Makefile.in.parallel	Sat Apr  1 16:48:04 2000
+++ libjava/Makefile.in	Sat Apr  1 17:25:20 2000
@@ -1400,6 +1400,8 @@ $(c_files): java/lang/fdlibm.h java/lang
 $(javao_files): %.lo: %.java
 	$(GCJCOMPILE) -o $@ $<
 
+$(javao_files): libgcj.zip
+
 .class.h:
 	$(GCJH) -classpath $(top_builddir) $(basename $<)
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]