From: Richard Kreckel Date: Fri, 30 Apr 2004 22:14:41 +0000 (+0000) Subject: * src/Makefile.in: Fix for parallel build: wait for subdir objects to X-Git-Tag: cln_1-1-7~6 X-Git-Url: https://www.ginac.de/CLN/cln.git//cln.git?a=commitdiff_plain;h=85a244e45dacb3c703ff848806a745a25b984e3c;p=cln.git * src/Makefile.in: Fix for parallel build: wait for subdir objects to be finished before creating the library. --- diff --git a/ChangeLog b/ChangeLog index 44a3076..f78520f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-05-01 Ralf Wildenhues + + * src/Makefile.in: Fix for parallel build: wait for subdir objects to + be finished before creating the library. + 2004-04-30 Richard B. Kreckel * src/integer/output/cl_I_print.cc (print_integer): workaround diff --git a/src/Makefile.in b/src/Makefile.in index 4fade8f..f50de63 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -199,6 +199,8 @@ $(SUBDIRS_DIRDEP) : %.dirdep : ifeq ($(SUBDIR),.) +$(ALLOBJECTS_LO) : $(SUBDIRS_TARGET) + libcln.la : $(LIBTOOL) $(ALLOBJECTS_LO) $(LIBTOOL_LINK) $(CC) -o libcln.la -rpath $(libdir) -version-info $(CL_CURRENT):$(CL_REVISION):$(CL_AGE) $(LDFLAGS) $(LIBS) $(ALLOBJECTS_LO)