Untitled_Kernel/module_bootloader/Makefile
lordtet 7500299684 Refactoring of makefiles is here. Looks like a bit less of a mess,
thankfully.

Also now using `ld` and `as` instead of `gcc` for everything. Seems to
work OK for now - but may bite on the ass later. We'll see!
2025-05-26 22:42:41 -04:00

13 lines
161 B
Makefile

# Makefile
#Some definitions
SRC_DIR = src
BUILD_DIR = build
all:
grub-mkrescue -o $(BUILD_DIR)/uOS.iso $(SRC_DIR)
.PHONY: clean
clean:
rm $(BUILD_DIR)/*