[boot] Add explicit dependency on bootproto/memory.h

bootproto/memory.h is generated from a cog file. Some builds could fail
because the dependency on this file was not explicit.
This commit is contained in:
Justin C. Miller
2022-01-08 14:35:56 -08:00
parent 6877944d17
commit 488f2df869
2 changed files with 10 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# vim: ft=python
module("boot",
boot = module("boot",
kind = "exe",
output = "boot.efi",
targets = [ "boot" ],
@@ -21,3 +21,11 @@ module("boot",
"support.cpp",
"video.cpp",
])
boot.add_depends([
"main.cpp",
"memory_map.cpp",
"paging.cpp",
], [
"${target_dir}/bootproto.dir/include/bootproto/memory.h",
])