mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
54 lines
948 B
Makefile
54 lines
948 B
Makefile
CCPREFIX = i386-elftailix-
|
|
|
|
AS = $(CCPREFIX)as
|
|
CC = $(CCPREFIX)gcc
|
|
LD = $(CCPREFIX)ld
|
|
|
|
KERNEL = kernelmq.multiboot2
|
|
|
|
CFLAGS = -std=gnu99 -ffreestanding -fno-builtin -fno-stack-protector -Wall -Wextra -I/usr/local/include
|
|
|
|
# Architecture-dependent
|
|
OBJS = start.s.o
|
|
OBJS += main.c.o
|
|
OBJS += panic.c.o
|
|
OBJS += paging.c.o
|
|
|
|
# Architecture-independent
|
|
OBJS += info.c.o
|
|
|
|
# Built-in drivers
|
|
OBJS += pic.c.o
|
|
OBJS += timer.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
|
|
|
|
all: $(KERNEL)
|
|
|
|
clean:
|
|
rm -f $(KERNEL) $(OBJS)
|
|
|
|
$(KERNEL): $(OBJS)
|
|
$(CC) -T linker.ld -o $@ $^ -ffreestanding -nostdlib -lgcc -lkernaux -Wl,-L/usr/local/lib
|
|
grub-file --is-x86-multiboot2 $@
|
|
|
|
%.c.o: %.c
|
|
$(CC) -c $< -o $@ $(CFLAGS)
|
|
|
|
%.s.o: %.s
|
|
$(AS) $< -o $@
|
|
|
|
%.asm.cpp.o: %.asm.cpp
|
|
nasm -f elf32 -o $@ $<
|
|
|
|
%.asm.cpp: %.asm
|
|
cpp -P $< $@
|