summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.xyz>2021-03-09 18:51:46 -0600
committerDanny Holman <dholman@gymli.xyz>2021-03-09 18:51:46 -0600
commit11e6fe504c56e47b5cb8c9937322131dd9832e76 (patch)
tree1a72c7c89f612ac03255f052fc846d3847f24f92 /Makefile
parent34c3e7482aed0f26299f6c21e342ab45ebc55b47 (diff)
Makefile: include dependency files
Add an include directive in the main Makefile that includes the dependency files generated by GCC. Signed-off-by: Danny Holman <dholman@gymli.xyz>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b1847bc..9008374 100644
--- a/Makefile
+++ b/Makefile
@@ -72,3 +72,5 @@ install-headers:
install-kernel: $(KERNEL)
mkdir -p $(DESTDIR)$(BOOTDIR)
cp $(KERNEL) $(DESTDIR)$(BOOTDIR)
+
+-include $(OBJS:.o=.d)