summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 84a17fa..a50edc2 100644
--- a/Makefile
+++ b/Makefile
@@ -98,7 +98,9 @@ test-$(PROJECTNAME): $(TESTSRC:.cpp=.o)
mcc: $(SRC:.cpp=.o)
$(CXX) $(CXXFLAGS) $^ $(LIBS) -o $@
-dep: $(TESTSRC:.cpp=.d) mcc.d
+dep:
+ -rm -f $(TESTSRC:.cpp=.d) mcc.d
+ $(MAKE) $(TESTSRC:.cpp=.d) mcc.d
%.d: %.cpp
$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -MM -MP -MF $@ -c $<
@@ -123,6 +125,6 @@ zip: clean
zip -r ../$(PROJECTNAME).zip *
ls -l ../$(PROJECTNAME).zip
-.PHONY: clean all zip
+.PHONY: clean all zip dep
-include $(wildcard $(SRC:.cpp=.d))