From: wolf Date: Thu, 31 Jan 2002 13:39:32 +0000 (+0000) Subject: Use LDFLAGS to link library, rather than CCFLAGS X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f3506cee5503869ee9f37f9b72382a1f1389500;p=dealii-svn.git Use LDFLAGS to link library, rather than CCFLAGS git-svn-id: https://svn.dealii.org/trunk@5436 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/contrib/hsl/Makefile b/deal.II/contrib/hsl/Makefile index c40175a36a..ad68a40916 100644 --- a/deal.II/contrib/hsl/Makefile +++ b/deal.II/contrib/hsl/Makefile @@ -39,7 +39,7 @@ lib/libhsl.a: $(o-files) lib/libhsl.so: $(forward-declarations) $(o-files) @echo =====base=============optimized==$(MT)== Linking library: $@ - @$(CC) $(CXXFLAGS.o) -shared -o $@ $(o-files) + @$(CC) $(LDFLAGS) -shared -o $@ $(o-files)