From 8b4c8bbd6db2b712fb069d3e773d70159979ab97 Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Sun, 19 Nov 2023 19:59:05 +0100 Subject: Fix too few files being included in depends --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1c157de..f262ea1 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ CFLAGS += -Werror -g -std=c99 -I $(.CURDIR)/src -I $(.CURDIR)/src/main UNAME_S != uname -s | tr '[:upper:]' '[:lower:]' .sinclude "$(UNAME_S).mk" -DEPS = $(DGED_SOURCES:.c=.d) $(TEST_SOURCES:.c=.d) +DEPS = $(SOURCES:.c=.d) $(MAIN_SOURCES:.c=.d) $(TEST_SOURCES:.c=.d) OBJS = $(SOURCES:.c=.o) PLATFORM_OBJS = $(PLATFORM_SOURCES:.c=.o) -- cgit v1.2.3