omos-tcnj2024/Makefile

16 lines
235 B
Makefile
Raw Normal View History

2024-02-17 18:56:38 +01:00
SRC=$(wildcard src/*.c)
BOOT=$(wildcard boot/*.s)
INCLUDE=include/
FLAGS=-g -Wall -Wextra -Ffreestanding -m32
BIN=boot.img
all: boot
$(CC) $(FLAGS) $(SRC) -I $(INCLUDE) -o $(BIN)
boot:
nasm -Fl32
install: all
./installgrub.sh