first commit

This commit is contained in:
2024-11-27 17:06:47 +09:00
commit 3f556cba19
23 changed files with 1498 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
BDIR = build
SUBDIRS = biosboot boot mbr installboot installmbr
all: $(BDIR) $(SUBDIRS)
$(BDIR):
mkdir -p $(BDIR)
clean: $(SUBDIRS)
rm -rf $(BDIR)
$(SUBDIRS):
@make -sC $@ $(MAKECMDGOALS) BDIR=$(PWD)/$(BDIR) IDIR=$(PWD)
.PHONY: biosboot boot installboot mbr installmbr