1
0
Fork 0
Redox-From-Scratch/Makefile

11 lines
139 B
Makefile
Raw Normal View History

2024-12-11 18:21:14 -08:00
BUILD_DIR=./build
.PHONY: clean
all: $(BUILD_DIR)/bootloader.bin
include make/bios
include make/bootloader
clean:
rm -drf $(BUILD_DIR)