From 7017d4cf94796b7db36c420cc12b367069fe16ab Mon Sep 17 00:00:00 2001 From: Daniel Collins Date: Tue, 12 Sep 2017 17:48:33 +0100 Subject: [PATCH] Create missing directory under .d/ --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 35c21ef..1497b49 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ CFLAGS := -std=c99 -mno-ms-bitfields -Wall $(DBG_OPT) $(INCLUDE) CXXFLAGS := -std=c++0x -mno-ms-bitfields -Wall $(DBG_OPT) $(INCLUDE) DEPDIR := .d -$(shell mkdir -p $(DEPDIR)/src/ $(DEPDIR)/tools/ $(DEPDIR)/tests/) +$(shell mkdir -p $(DEPDIR)/src/ $(DEPDIR)/tools/ $(DEPDIR)/tests/tap/) DEPFLAGS = -MT $@ -MMD -MP -MF $(DEPDIR)/$@.Td DEPPOST = @mv -f $(DEPDIR)/$@.Td $(DEPDIR)/$@.d && touch $@