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!
13 lines
161 B
Makefile
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)/*
|