mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
32 lines
702 B
Makefile
32 lines
702 B
Makefile
ifneq (ok, $(shell test -d '$(I)' && echo 'ok'))
|
|
$(error 'Include directory "$(I)" does not exist')
|
|
endif
|
|
|
|
CCPREFIX = i686-elf-
|
|
|
|
AS = $(CCPREFIX)as
|
|
CC = $(CCPREFIX)gcc
|
|
|
|
OBJS = boot.s.o main.c.o logger.c.o console.c.o gdt.c.o gdt.asm.o idt.c.o idt.asm.o isr.c.o isr.asm.o
|
|
|
|
run: kernel
|
|
qemu-system-i386 -kernel kernel -d guest_errors
|
|
|
|
all: kernel
|
|
|
|
clean:
|
|
rm -f kernel $(OBJS)
|
|
|
|
kernel: $(OBJS)
|
|
$(CC) -T linker.ld -o $@ -ffreestanding -nostdlib -lgcc $(OBJS)
|
|
grub-file --is-x86-multiboot $@
|
|
grub-file --is-x86-multiboot2 $@
|
|
|
|
%.c.o: %.c
|
|
$(CC) -c $< -o $@ -std=gnu99 -ffreestanding -fno-builtin -fno-stack-protector -Wall -Wextra -I$(I)
|
|
|
|
%.s.o: %.s
|
|
$(AS) $< -o $@
|
|
|
|
%.asm.o: %.asm
|
|
nasm -felf -o $@ $<
|