diff options
-rw-r--r-- | Makefile | 5 | ||||
-rw-r--r-- | QA/UnitTest/Makefile.inc | 1 | ||||
-rw-r--r-- | Swiften/Makefile.inc | 3 |
3 files changed, 5 insertions, 4 deletions
@@ -69,7 +69,7 @@ clean: clean-deps $(CLEAN_TARGETS) .PHONY: clean-deps clean-deps: - -$(RM) $(SWIFTEN_SOURCES:.cpp=.dep) $(SWIFTEN_OBJECTIVE_SOURCES:.mm=.dep) $(UNITTEST_SOURCES:.cpp=.dep) + -$(RM) $(DEPS) ################################################################################ @@ -78,9 +78,6 @@ clean-deps: ifeq (,$(findstring clean, $(MAKECMDGOALS))) ifeq (,$(findstring clean-deps, $(MAKECMDGOALS))) --include $(SWIFTEN_SOURCES:.cpp=.dep) --include $(SWIFTEN_OBJECTIVE_SOURCES:.mm=.dep) --include $(UNITTEST_SOURCES:.cpp=.dep) -include $(DEPS) endif endif diff --git a/QA/UnitTest/Makefile.inc b/QA/UnitTest/Makefile.inc index 820fb64..531f616 100644 --- a/QA/UnitTest/Makefile.inc +++ b/QA/UnitTest/Makefile.inc @@ -7,6 +7,7 @@ UNITTEST_OBJECTS = \ TEST_TARGETS += check CLEANFILES += $(UNITTEST_OBJECTS) $(UNITTEST_TARGET) +DEPS += $(UNITTEST_SOURCES:.cpp=.dep) .PHONY: check check: $(UNITTEST_TARGET) diff --git a/Swiften/Makefile.inc b/Swiften/Makefile.inc index 4b09bf3..d5bf0f5 100644 --- a/Swiften/Makefile.inc +++ b/Swiften/Makefile.inc @@ -39,6 +39,9 @@ TARGETS += $(SWIFTEN_TARGET) INSTALL_TARGETS += install-swiften UNITTEST_LIBS += $(SWIFTEN_TARGET) CLEANFILES += $(SWIFTEN_TARGET) $(SWIFTEN_OBJECTS) +DEPS += \ + $(SWIFTEN_SOURCES:.cpp=.dep) \ + $(SWIFTEN_OBJECTIVE_SOURCES:.mm=.dep) .PHONY: lib lib: $(SWIFTEN_TARGET) |