summaryrefslogtreecommitdiffhomepage
path: root/makefile
diff options
context:
space:
mode:
authorMarvin Borner2021-07-06 22:07:04 +0200
committerMarvin Borner2021-07-06 22:07:04 +0200
commitb2880945ae17ad857bd425540acd3dc75b2cff6b (patch)
treef5dea0028fb5e2b9072aa15f60c497bc7e20d13b /makefile
parent23aa6f84539ba320a91235fb81681d0754178f62 (diff)
Basic multiboot 1 detection and verification
Diffstat (limited to 'makefile')
-rw-r--r--makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/makefile b/makefile
index 3c52077..3d310d0 100644
--- a/makefile
+++ b/makefile
@@ -27,13 +27,18 @@ CFLAGS = $(WARNINGS) -std=c99 -m32 -nostdlib -nostdinc -ffunction-sections -fno-
ASFLAGS = -f elf32
-all: dir $(BLD)/boot.bin
+export
+
+all: dir $(BLD)/boot.bin mb1
dir:
@mkdir -p $(BLD)/entry/
@mkdir -p $(BLD)/loader/fs/
@mkdir -p $(BLD)/loader/impl/
+mb1:
+ @$(MAKE) --no-print-directory -C example/$@
+
$(BLD)/boot.bin: $(BLD)/loader.bin
@$(AS) $(ASFLAGS) -f bin $(SRC)/entry/bootsector.asm -o $@