diff options
author | Danny Holman <dholman@gymli.org> | 2025-05-03 18:15:25 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2025-05-04 11:51:11 -0500 |
commit | 6535758dff5f02739f5b28c5539ebeea28ca2f23 (patch) | |
tree | 69b095cfd2c279825dd94a6165b85d4155decdd7 /bootstrap/stage1/Makefile | |
parent | 1cfbd25dc9eb39467406686c8ae1efbfd5517865 (diff) |
Create build infrastructure for a bootloader implementation. This loader
should support UEFI and be able to load an ELF kernel at a designated
entry point.
Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'bootstrap/stage1/Makefile')
-rw-r--r-- | bootstrap/stage1/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bootstrap/stage1/Makefile b/bootstrap/stage1/Makefile new file mode 100644 index 0000000..b09f1ad --- /dev/null +++ b/bootstrap/stage1/Makefile @@ -0,0 +1,16 @@ +SUBDIRS:=efi \ + +export ARCH VERSION DESTDIR SYS_INCLUDE + +.PHONY: all clean $(SUBDIRS) + +all: $(SUBDIRS) + +subdirs: $(SUBDIRS) + +$(SUBDIRS): + $(MAKE) $(MAKECMDGOALS) -C $@ + +clean: $(SUBDIRS) + +install: $(SUBDIRS) |