From: Wolfgang Bangerth Date: Mon, 18 May 1998 08:42:48 +0000 (+0000) Subject: Eliminate the need for libg++.a since we changed String->string in the parameter_hand... X-Git-Tag: v8.0.0~22948 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94e2f78435eae09d6fa9fe1a136e82b8daaf1cad;p=dealii.git Eliminate the need for libg++.a since we changed String->string in the parameter_handler.* files. git-svn-id: https://svn.dealii.org/trunk@306 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/Attic/examples/convergence/Makefile b/deal.II/deal.II/Attic/examples/convergence/Makefile index e61c79cd79..17bc9597f5 100644 --- a/deal.II/deal.II/Attic/examples/convergence/Makefile +++ b/deal.II/deal.II/Attic/examples/convergence/Makefile @@ -85,7 +85,7 @@ endif # make rule for the target $(target) : $(libraries) @echo ============================ Linking $@ - @$(CXX) $(flags) -o $@ $(libraries) -lg++ $(user-libs) + @$(CXX) $(flags) -o $@ $(libraries) $(user-libs) # rule how to run the program run: $(target) diff --git a/deal.II/deal.II/Attic/examples/dof/Makefile b/deal.II/deal.II/Attic/examples/dof/Makefile index 27d3fa5778..d9e9c6c501 100644 --- a/deal.II/deal.II/Attic/examples/dof/Makefile +++ b/deal.II/deal.II/Attic/examples/dof/Makefile @@ -85,7 +85,7 @@ endif # make rule for the target $(target) : $(libraries) @echo ============================ Linking $@ - @$(CXX) $(flags) -o $@ $(libraries) -lg++ $(user-libs) + @$(CXX) $(flags) -o $@ $(libraries) $(user-libs) # rule how to run the program run: $(target) diff --git a/deal.II/deal.II/Attic/examples/error-estimation/Makefile b/deal.II/deal.II/Attic/examples/error-estimation/Makefile index 0cfca5ab45..3a85970222 100644 --- a/deal.II/deal.II/Attic/examples/error-estimation/Makefile +++ b/deal.II/deal.II/Attic/examples/error-estimation/Makefile @@ -90,7 +90,7 @@ endif # make rule for the target $(target) : $(libraries) @echo ============================ Linking $@ - @$(CXX) $(flags) -o $@ $(libraries) -lg++ $(user-libs) + @$(CXX) $(flags) -o $@ $(libraries) $(user-libs) run: $(target) $(run-action) diff --git a/deal.II/deal.II/Attic/examples/grid/Makefile b/deal.II/deal.II/Attic/examples/grid/Makefile index 7d9c8ede0e..e342a03c41 100644 --- a/deal.II/deal.II/Attic/examples/grid/Makefile +++ b/deal.II/deal.II/Attic/examples/grid/Makefile @@ -85,7 +85,7 @@ endif # make rule for the target $(target) : $(libraries) @echo ============================ Linking $@ - @$(CXX) $(flags) -o $@ $(libraries) -lg++ $(user-libs) + @$(CXX) $(flags) -o $@ $(libraries) $(user-libs) # rule how to run the program run: $(target) diff --git a/deal.II/deal.II/Attic/examples/poisson/Makefile b/deal.II/deal.II/Attic/examples/poisson/Makefile index c76bce9865..1093926d2c 100644 --- a/deal.II/deal.II/Attic/examples/poisson/Makefile +++ b/deal.II/deal.II/Attic/examples/poisson/Makefile @@ -85,7 +85,7 @@ endif # make rule for the target $(target) : $(libraries) @echo ============================ Linking $@ - @$(CXX) $(flags) -o $@ $(libraries) -lg++ $(user-libs) + @$(CXX) $(flags) -o $@ $(libraries) $(user-libs) # rule how to run the program run: $(target) diff --git a/tests/big-tests/convergence/Makefile b/tests/big-tests/convergence/Makefile index e61c79cd79..17bc9597f5 100644 --- a/tests/big-tests/convergence/Makefile +++ b/tests/big-tests/convergence/Makefile @@ -85,7 +85,7 @@ endif # make rule for the target $(target) : $(libraries) @echo ============================ Linking $@ - @$(CXX) $(flags) -o $@ $(libraries) -lg++ $(user-libs) + @$(CXX) $(flags) -o $@ $(libraries) $(user-libs) # rule how to run the program run: $(target) diff --git a/tests/big-tests/dof/Makefile b/tests/big-tests/dof/Makefile index 27d3fa5778..d9e9c6c501 100644 --- a/tests/big-tests/dof/Makefile +++ b/tests/big-tests/dof/Makefile @@ -85,7 +85,7 @@ endif # make rule for the target $(target) : $(libraries) @echo ============================ Linking $@ - @$(CXX) $(flags) -o $@ $(libraries) -lg++ $(user-libs) + @$(CXX) $(flags) -o $@ $(libraries) $(user-libs) # rule how to run the program run: $(target) diff --git a/tests/big-tests/error-estimation/Makefile b/tests/big-tests/error-estimation/Makefile index 0cfca5ab45..3a85970222 100644 --- a/tests/big-tests/error-estimation/Makefile +++ b/tests/big-tests/error-estimation/Makefile @@ -90,7 +90,7 @@ endif # make rule for the target $(target) : $(libraries) @echo ============================ Linking $@ - @$(CXX) $(flags) -o $@ $(libraries) -lg++ $(user-libs) + @$(CXX) $(flags) -o $@ $(libraries) $(user-libs) run: $(target) $(run-action) diff --git a/tests/big-tests/grid/Makefile b/tests/big-tests/grid/Makefile index 7d9c8ede0e..e342a03c41 100644 --- a/tests/big-tests/grid/Makefile +++ b/tests/big-tests/grid/Makefile @@ -85,7 +85,7 @@ endif # make rule for the target $(target) : $(libraries) @echo ============================ Linking $@ - @$(CXX) $(flags) -o $@ $(libraries) -lg++ $(user-libs) + @$(CXX) $(flags) -o $@ $(libraries) $(user-libs) # rule how to run the program run: $(target) diff --git a/tests/big-tests/poisson/Makefile b/tests/big-tests/poisson/Makefile index c76bce9865..1093926d2c 100644 --- a/tests/big-tests/poisson/Makefile +++ b/tests/big-tests/poisson/Makefile @@ -85,7 +85,7 @@ endif # make rule for the target $(target) : $(libraries) @echo ============================ Linking $@ - @$(CXX) $(flags) -o $@ $(libraries) -lg++ $(user-libs) + @$(CXX) $(flags) -o $@ $(libraries) $(user-libs) # rule how to run the program run: $(target)