From: wolf Date: Wed, 25 Sep 2002 22:21:34 +0000 (+0000) Subject: Fix missing dependencies that hits us in parallel builds. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fafc0c736d3478e1aed01cad58e45557719c11f1;p=dealii-svn.git Fix missing dependencies that hits us in parallel builds. git-svn-id: https://svn.dealii.org/trunk@6518 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/contrib/hsl/Makefile b/deal.II/contrib/hsl/Makefile index 7fe45244dc..4d63975cbf 100644 --- a/deal.II/contrib/hsl/Makefile +++ b/deal.II/contrib/hsl/Makefile @@ -48,7 +48,8 @@ $(LIBDIR)/libhsl.so: $(forward-declarations) $(o-files) # rule to make the program that runs an MA27 solver detached from the # main program, and communicates through a pipe. since this program # has actually nothing much to do, compile it in debug mode -$(LIBDIR)/bin/detached_ma27: source/detached_ma27.cc include/hsl/hsl.h +$(LIBDIR)/bin/detached_ma27: source/detached_ma27.cc include/hsl/hsl.h \ + $(lib-contrib-hsl) @echo =====hsl=========================$(MT)== Making $(@F) @$(CXX) $(CXXFLAGS.g) $< -o $@ $(lib-contrib-hsl) $(F77LIBS)