summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-11-06 18:20:34 +0100
committerRoland Reichwein <mail@reichwein.it>2020-11-06 18:20:34 +0100
commit71c7fd62f8b5257b82cf32b0f747fcf313fcc617 (patch)
tree6f014b14d08080459a04a965912c62605d9015ca /Makefile
parent62aafc5c9273cb0b7a91bf2e4dee1ac2d3658bb3 (diff)
Prepare Token/Node handling
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))