summaryrefslogtreecommitdiffstats
path: root/Source/cmUnixMakefileGenerator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-rw-r--r--Source/cmUnixMakefileGenerator.cxx29
1 files changed, 7 insertions, 22 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx
index a41e00c..346973a 100644
--- a/Source/cmUnixMakefileGenerator.cxx
+++ b/Source/cmUnixMakefileGenerator.cxx
@@ -1577,28 +1577,13 @@ void cmUnixMakefileGenerator::OutputMakeRules(std::ostream& fout)
"all",
"cmake.depends $(TARGETS) $(SUBDIR_BUILD)",
0);
- if (m_Makefile->IsOn("QT_WRAP_CPP") ||
- m_Makefile->IsOn("QT_WRAP_UI") ||
- m_Makefile->IsOn("FLTK_WRAP_UI") )
- {
- this->OutputMakeRule(fout,
- "remove generated files and dependency file",
- "clean",
- "$(SUBDIR_CLEAN)",
- "-@ $(RM) $(CLEAN_OBJECT_FILES) $(EXECUTABLES)"
- " $(TARGETS) ${GENERATED_QT_FILES}"
- " ${GENERATED_FLTK_FILES}",
- "make depend");
- }
- else
- {
- this->OutputMakeRule(fout,
- "remove generated files",
- "clean",
- "$(SUBDIR_CLEAN)",
- "-@ $(RM) $(CLEAN_OBJECT_FILES) $(EXECUTABLES)"
- " $(TARGETS)");
- }
+ this->OutputMakeRule(fout,
+ "remove generated files",
+ "clean",
+ "$(SUBDIR_CLEAN)",
+ "-@ $(RM) $(CLEAN_OBJECT_FILES) $(EXECUTABLES)"
+ " $(TARGETS) $(GENERATED_QT_FILES) $(GENERATED_FLTK_FILES)");
+
// collect up all the sources
std::string allsources;
std::map<cmStdString, cmTarget>& targets = m_Makefile->GetTargets();