Added makefiles

This commit is contained in:
2024-12-11 18:21:14 -08:00
parent 1fd7b7c55f
commit bebed12bf4
3 changed files with 52 additions and 0 deletions

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
BUILD_DIR=./build
.PHONY: clean
all: $(BUILD_DIR)/bootloader.bin
include make/bios
include make/bootloader
clean:
rm -drf $(BUILD_DIR)