# 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)/*