blob: a3d13007e7fe35fc3e7e5c553d1029c55168b3d0 (
plain) (
blame)
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
35
36
37
38
39
40
|
# MIT License, Copyright (c) 2020 Marvin Borner
# TODO: Remove serial and cpu from libc?
COBJS = str.o \
mem.o \
math.o \
conv.o \
print.o \
serial.o \
cpu.o \
sys.o \
list.o \
stack.o \
random.o
CC = ccache ../cross/opt/bin/i686-elf-gcc
LD = ccache ../cross/opt/bin/i686-elf-ld
AR = ccache ../cross/opt/bin/i686-elf-ar
AS = ccache nasm
WARNINGS = -Wall -Wextra -pedantic-errors -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Wno-long-long
CFLAGS = $(WARNINGS) -nostdlib -nostdinc -fno-builtin -mgeneral-regs-only -std=c99 -m32 -Iinc/ -Ofast
ASFLAGS = -f elf32
%.o: %.c
@$(CC) -c $(CFLAGS) $< -o $@
libc: CFLAGS += -Duserspace -fPIE
libc: $(COBJS)
@$(AS) $(ASFLAGS) crt/crt0.asm -o crt0.o
@mkdir -p ../build/
@$(AR) rcs ../build/libc.a crt0.o $+
libk: CFLAGS += -Dkernel -ffreestanding -I../kernel/inc/ $(CFLAGS_EXTRA)
libk: $(COBJS)
@mkdir -p ../build/
@$(AR) rcs ../build/libk.a $+
clean:
@find . -name "*.o" -type f -delete
|