10 lines
120 B
Makefile
10 lines
120 B
Makefile
|
|
# Makefile
|
||
|
|
|
||
|
|
#Some definitions
|
||
|
|
SRC_DIR = src
|
||
|
|
BUILD_DIR = build
|
||
|
|
|
||
|
|
|
||
|
|
all:
|
||
|
|
grub-mkrescue -o $(BUILD_DIR)/uOS.iso $(SRC_DIR)
|