From 0aa66aa54310ffa4e80d7d36ee779eb8fa8269c8 Mon Sep 17 00:00:00 2001 From: heck Date: Fri, 9 Apr 2021 00:19:42 +0200 Subject: [PATCH] Tests: compiler generated header prerequisites somehow not working --- test/Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/Makefile b/test/Makefile index 1c77eae..759c5cc 100644 --- a/test/Makefile +++ b/test/Makefile @@ -13,14 +13,14 @@ SRC_FRAMEWORK=$(wildcard framework/*.cc) OBJ_FRAMEWORK=$(subst .cc,.o,$(SRC_FRAMEWORK)) # Depends -DEP_TEST=$(subst .cc,.d,$(SRC_TEST)) -DEP_FRAMEWORK=$(subst .cc,.d,$(SRC_FRAMEWORK)) -DEPENDS+= $(DEP_TEST) $(DEP_FRAMEWORK) -CXXFLAGS+= -MMD -MP - -ifneq ($(MAKECMDGOALS),clean) - -include $(DEPENDS) -endif +#DEP_TEST=$(subst .cc,.d,$(SRC_TEST)) +#DEP_FRAMEWORK=$(subst .cc,.d,$(SRC_FRAMEWORK)) +#DEPENDS+=$(DEP_TEST)$(DEP_FRAMEWORK) +#CXXFLAGS+= -MMD -MP +# +#ifneq ($(MAKECMDGOALS),clean) +# -include $(DEPENDS) +#endif .PHONY: all clean rmtestdata .DEFAULT_GOAL := all