From: kanschat Date: Tue, 20 Sep 2011 18:59:15 +0000 (+0000) Subject: make target explicit in Makefile X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53b720b8505e380de5d2ef4a14e7d0a45596a7aa;p=dealii-svn.git make target explicit in Makefile git-svn-id: https://svn.dealii.org/trunk@24345 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-3/Makefile b/deal.II/examples/step-3/Makefile index 575312d3ad..63c08f1218 100644 --- a/deal.II/examples/step-3/Makefile +++ b/deal.II/examples/step-3/Makefile @@ -7,7 +7,7 @@ # The first is the name of the application. It is assumed that the # application name is the same as the base file name of the single C++ # file from which the application is generated. -target = $(basename $(shell echo step-*.cc)) +target = step-3.cc # The second field determines whether you want to run your program in # debug or optimized mode. The latter is significantly faster, but no diff --git a/deal.II/examples/step-4/Makefile b/deal.II/examples/step-4/Makefile index 575312d3ad..abbbf3ced9 100644 --- a/deal.II/examples/step-4/Makefile +++ b/deal.II/examples/step-4/Makefile @@ -7,7 +7,7 @@ # The first is the name of the application. It is assumed that the # application name is the same as the base file name of the single C++ # file from which the application is generated. -target = $(basename $(shell echo step-*.cc)) +target = step-4.cc # The second field determines whether you want to run your program in # debug or optimized mode. The latter is significantly faster, but no diff --git a/deal.II/examples/step-5/Makefile b/deal.II/examples/step-5/Makefile index 575312d3ad..3f4716d82b 100644 --- a/deal.II/examples/step-5/Makefile +++ b/deal.II/examples/step-5/Makefile @@ -7,7 +7,7 @@ # The first is the name of the application. It is assumed that the # application name is the same as the base file name of the single C++ # file from which the application is generated. -target = $(basename $(shell echo step-*.cc)) +target = step-5.cc # The second field determines whether you want to run your program in # debug or optimized mode. The latter is significantly faster, but no diff --git a/deal.II/examples/step-6/Makefile b/deal.II/examples/step-6/Makefile index 575312d3ad..14129c9378 100644 --- a/deal.II/examples/step-6/Makefile +++ b/deal.II/examples/step-6/Makefile @@ -7,7 +7,7 @@ # The first is the name of the application. It is assumed that the # application name is the same as the base file name of the single C++ # file from which the application is generated. -target = $(basename $(shell echo step-*.cc)) +target = step-6.cc # The second field determines whether you want to run your program in # debug or optimized mode. The latter is significantly faster, but no diff --git a/deal.II/examples/step-7/Makefile b/deal.II/examples/step-7/Makefile index 575312d3ad..5dd30eea54 100644 --- a/deal.II/examples/step-7/Makefile +++ b/deal.II/examples/step-7/Makefile @@ -7,7 +7,7 @@ # The first is the name of the application. It is assumed that the # application name is the same as the base file name of the single C++ # file from which the application is generated. -target = $(basename $(shell echo step-*.cc)) +target = step-7.cc # The second field determines whether you want to run your program in # debug or optimized mode. The latter is significantly faster, but no diff --git a/deal.II/examples/step-8/Makefile b/deal.II/examples/step-8/Makefile index 575312d3ad..cb5a053b76 100644 --- a/deal.II/examples/step-8/Makefile +++ b/deal.II/examples/step-8/Makefile @@ -7,7 +7,7 @@ # The first is the name of the application. It is assumed that the # application name is the same as the base file name of the single C++ # file from which the application is generated. -target = $(basename $(shell echo step-*.cc)) +target = step-8.cc # The second field determines whether you want to run your program in # debug or optimized mode. The latter is significantly faster, but no