diff options
author | Danny Holman <dholman@gymli.xyz> | 2021-03-09 18:51:46 -0600 |
---|---|---|
committer | Danny Holman <dholman@gymli.xyz> | 2021-03-09 18:51:46 -0600 |
commit | 11e6fe504c56e47b5cb8c9937322131dd9832e76 (patch) | |
tree | 1a72c7c89f612ac03255f052fc846d3847f24f92 | |
parent | 34c3e7482aed0f26299f6c21e342ab45ebc55b47 (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>
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -72,3 +72,5 @@ install-headers: install-kernel: $(KERNEL) mkdir -p $(DESTDIR)$(BOOTDIR) cp $(KERNEL) $(DESTDIR)$(BOOTDIR) + +-include $(OBJS:.o=.d) |