Move source to src directory

This commit is contained in:
Josh Holtrop 2022-03-12 09:58:34 -05:00
parent fc2efa2474
commit df426afbc8
2 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ uefi_env = env "uefi" do |env|
env["CFLAGS"] += %w[-ffreestanding]
env["LDFLAGS"] += %w[-nostdlib -Wl,-dll -shared -Wl,--subsystem,10 -e efi_main]
env["LIBS"] += %w[gcc]
env["sources"] = glob("*.c")
env["sources"] = glob("src/**/*.c")
env.Program("^/BOOTX64.EFI", "${sources}")
env.Image("^/efi-loader.img", "^/BOOTX64.EFI")
end

View File