From 2cb9ad53151f0a8ea7232b4038167c35bcdcc267 Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 14 Dec 1999 10:12:00 +0000 Subject: [PATCH] Make compilable in non-debug mode. git-svn-id: https://svn.dealii.org/trunk@2062 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/Attic/examples/poisson/Makefile | 4 ++-- tests/big-tests/poisson/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/deal.II/Attic/examples/poisson/Makefile b/deal.II/deal.II/Attic/examples/poisson/Makefile index 65a6d65624..a4901b56f4 100644 --- a/deal.II/deal.II/Attic/examples/poisson/Makefile +++ b/deal.II/deal.II/Attic/examples/poisson/Makefile @@ -75,7 +75,7 @@ $(target) : $(libraries) # rule how to run the program run: $(target) - $(target) $(run-parameters) + ./$(target) $(run-parameters) $(additional-run-action) @@ -87,7 +87,7 @@ run: $(target) %.o : %.cc @echo ============================ Compiling with optimization: $< @echo $(CXX) ... -c $< -o $@ - @$(CXX) $(CXXFLAGS) -c $< -o $@ + @$(CXX) $(CXXFLAGS.o) -c $< -o $@ # rules which files the libraries depend upon diff --git a/tests/big-tests/poisson/Makefile b/tests/big-tests/poisson/Makefile index 65a6d65624..a4901b56f4 100644 --- a/tests/big-tests/poisson/Makefile +++ b/tests/big-tests/poisson/Makefile @@ -75,7 +75,7 @@ $(target) : $(libraries) # rule how to run the program run: $(target) - $(target) $(run-parameters) + ./$(target) $(run-parameters) $(additional-run-action) @@ -87,7 +87,7 @@ run: $(target) %.o : %.cc @echo ============================ Compiling with optimization: $< @echo $(CXX) ... -c $< -o $@ - @$(CXX) $(CXXFLAGS) -c $< -o $@ + @$(CXX) $(CXXFLAGS.o) -c $< -o $@ # rules which files the libraries depend upon -- 2.39.5