From 6535758dff5f02739f5b28c5539ebeea28ca2f23 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Sat, 3 May 2025 18:15:25 -0500 Subject: bootstrap: create build files 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 --- bootstrap/stage1/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 bootstrap/stage1/Makefile (limited to 'bootstrap/stage1/Makefile') 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) -- cgit v1.2.3