mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
50 lines
890 B
Makefile
50 lines
890 B
Makefile
AS = $(CCPREFIX)as
|
|
CC = $(CCPREFIX)gcc
|
|
|
|
# Architecture-dependent
|
|
OBJS = start.s.o
|
|
OBJS += init.c.o
|
|
OBJS += multiboot.c.o
|
|
OBJS += memory.c.o
|
|
OBJS += paging.c.o paging.asm.cpp.o
|
|
|
|
# Architecture-independent
|
|
OBJS += info.c.o
|
|
OBJS += main.c.o
|
|
|
|
OBJS += logger.c.o
|
|
OBJS += console.c.o
|
|
|
|
OBJS += protected.c.o protected.asm.cpp.o
|
|
|
|
OBJS += tss.c.o tss.asm.cpp.o
|
|
OBJS += tasks.asm.cpp.o
|
|
|
|
OBJS += interrupt.asm.cpp.o
|
|
|
|
OBJS += exception.c.o
|
|
OBJS += hwint.c.o
|
|
OBJS += syscall.c.o
|
|
|
|
OBJS += timer.c.o
|
|
|
|
all: kernel
|
|
|
|
clean:
|
|
rm -f kernel $(OBJS)
|
|
|
|
kernel: $(OBJS)
|
|
$(CC) -T linker.ld -o $@ -ffreestanding -nostdlib -lgcc $(OBJS) $(LIBK)
|
|
grub-file --is-x86-multiboot2 $@
|
|
|
|
%.c.o: %.c
|
|
$(CC) -c $< -o $@ -std=gnu99 -ffreestanding -nostdinc -fno-builtin -fno-stack-protector -Wall -Wextra -I "$(INCLUDE)"
|
|
|
|
%.s.o: %.s
|
|
$(AS) $< -o $@
|
|
|
|
%.asm.cpp.o: %.asm.cpp
|
|
nasm -felf32 -o $@ $<
|
|
|
|
%.asm.cpp: %.asm
|
|
cpp -P $< $@
|