summaryrefslogtreecommitdiff
path: root/Makefile
blob: 605b112182d9bff72bee9f8cd0e806fd548b50e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
AS      = i686-elf-as
CC      = i686-elf-gcc
CFLAGS  = -std=gnu99 -ffreestanding -O2 -Wall -Wextra
CFLAGS += -I.
LFLAGS  = -ffreestanding -O2 -nostdlib -lgcc
QFLAGS  = -no-reboot -d guest_errors,int,pcall,cpu_reset

OBJ  = $(patsubst %.s,%.o,$(wildcard platform/*.s))
OBJ += $(patsubst %.c,%.o,$(wildcard kernel/*.c))


.PHONY: boot debug clean
boot: kernel.bin
	qemu-system-i386 -kernel kernel.bin $(QFLAGS) -no-shutdown

debug: kernel.bin
	qemu-system-i386 -kernel kernel.bin $(QFLAGS) -s -S &
	sleep 1
	gdb

clean:
	rm -vf kernel.bin
	rm -vf **/*.o


kernel.bin: $(OBJ)
	$(CC) $(LFLAGS) -T linker.ld $^ -o $@
	grub-file --is-x86-multiboot $@

platform/%.o: platform/%.s
	$(AS) $^ -o $@

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