From 56c42a66b64e953c19985e66d8dd78c31b995640 Mon Sep 17 00:00:00 2001 From: Hugo LAMY Date: Tue, 5 Jul 2022 15:06:57 +0200 Subject: [PATCH] makefile without special rules for deps --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6384635..ef86c10 100644 --- a/Makefile +++ b/Makefile @@ -62,7 +62,6 @@ D_SRCS = ./tests #SRCS = main_stack_1.cpp SRCS = main.cpp \ tests_definitions.cpp \ - \ tests_vector.cpp \ tests_map.cpp \ tests_stack.cpp @@ -73,7 +72,7 @@ D_OBJS_STL = builds_stl OBJS_STL = $(SRCS:%.$(EXT)=$(D_OBJS_STL)/%.o) OBJS = $(OBJS_FT) $(OBJS_STL) -DEPS = $(OBJS:.o=.d) #see end-page note on header dependencie +#DEPS = $(OBJS:.o=.d) #see end-page note on header dependencie # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # @@ -122,5 +121,5 @@ re: fclean all # header dependencie # https://spin.atomicobject.com/2016/08/26/makefile-c-projects # https://stackoverflow.com/questions/13432127/how-to-use-the-include-directive-in-a-makefile-for-a-specific-target --include $(DEPS) +#-include $(DEPS)