From da96ea0525fc3e6ee617b01c8247f2e3e72583f9 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Tue, 13 Jul 2010 00:25:32 +0000 Subject: [PATCH] add exeext git-svn-id: https://svn.dealii.org/trunk@21478 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/common/scripts/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/deal.II/common/scripts/Makefile b/deal.II/common/scripts/Makefile index 96e2913115..c35688d82c 100644 --- a/deal.II/common/scripts/Makefile +++ b/deal.II/common/scripts/Makefile @@ -7,7 +7,8 @@ D=../.. include $D/common/Make.global_options -default: make_dependencies expand_instantiations +default: make_dependencies$(EXEEXT) expand_instantiations$(EXEEXT) \ + report_features$(EXEEXT) # rules to generate the program. let is be dependent on the global flags for @@ -16,15 +17,15 @@ default: make_dependencies expand_instantiations # deleted by "make clean"; following this, we generate empty Makefile.dep's # because we can't run the executable. So better be careful and regenerate # make_dependencies whenever we think it may be beneficial -make_dependencies : make_dependencies.cc $D/common/Make.global_options +make_dependencies$(EXEEXT) : make_dependencies.cc $D/common/Make.global_options @echo ============================ Compiling $@ @$(CXX) $(CXXFLAGS.o) $(LDFLAGS) $< -o $@ -expand_instantiations : expand_instantiations.cc $D/common/Make.global_options +expand_instantiations$(EXEEXT) : expand_instantiations.cc $D/common/Make.global_options @echo ============================ Compiling $@ @$(CXX) $(CXXFLAGS.o) $(LDFLAGS) $< -o $@ -report_features: report_features.cc $D/common/Make.global_options +report_features$(EXEEXT) : report_features.cc $D/common/Make.global_options @echo ============================ Compiling $@ @$(CXX) $(CXXFLAGS.o) $(LDFLAGS) $< -o $@ -- 2.39.5