aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: c25895fc2e53a93051c1a796ef5cb59cb5db8fb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
COBJS = src/main.o \
		src/drivers/vesa.o
CC = cross/opt/bin/i686-elf-gcc
LD = cross/opt/bin/i686-elf-ld
AS = nasm

CFLAGS = -Wall -Wextra -nostdlib -nostdinc -ffreestanding -std=c99 -pedantic-errors -Isrc/lib/ -Isrc/inc/ -c

all: compile clean

%.o: %.c
	$(CC) $(CFLAGS) $< -o $@

kernel: $(COBJS)

compile: kernel
	mkdir -p build/
	$(AS) -f bin src/entry.asm -o build/boot.bin
	$(LD) -N -emain -Ttext 0x00050000 -o build/kernel.bin $(COBJS) --oformat binary

clean:
	find src/ -name "*.o" -type f -delete