summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlbert Cervin <albert@acervin.com>2023-11-19 19:59:05 +0100
committerAlbert Cervin <albert@acervin.com>2023-11-19 19:59:05 +0100
commit8b4c8bbd6db2b712fb069d3e773d70159979ab97 (patch)
treeb3a3150bb61a885a30b31ba21f1a4e2600480925 /Makefile
parent8147ecac32f8737c76c6d686d69936a9d914088b (diff)
downloaddged-8b4c8bbd6db2b712fb069d3e773d70159979ab97.tar.gz
dged-8b4c8bbd6db2b712fb069d3e773d70159979ab97.tar.xz
dged-8b4c8bbd6db2b712fb069d3e773d70159979ab97.zip
Fix too few files being included in depends
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)