From: wolf Date: Tue, 14 Dec 1999 10:12:00 +0000 (+0000) Subject: Make compilable in non-debug mode. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cb9ad53151f0a8ea7232b4038167c35bcdcc267;p=dealii-svn.git Make compilable in non-debug mode. git-svn-id: https://svn.dealii.org/trunk@2062 0785d39b-7218-0410-832d-ea1e28bc413d --- 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