From 9f16b032d38613ca95e321e1d1e652c43129c68b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 15 Aug 2020 17:42:36 +0200 Subject: Added libgui --- libc/Makefile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 libc/Makefile (limited to 'libc/Makefile') diff --git a/libc/Makefile b/libc/Makefile new file mode 100644 index 0000000..f4286ae --- /dev/null +++ b/libc/Makefile @@ -0,0 +1,36 @@ +# 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 +CC = ../cross/opt/bin/i686-elf-gcc +LD = ../cross/opt/bin/i686-elf-ld +OC = ../cross/opt/bin/i686-elf-ar + +# Flags to make the binary smaller TODO: Remove after indirect pointer support! +CSFLAGS = -mpreferred-stack-boundary=2 -fno-asynchronous-unwind-tables -Os + +CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Iinc/ + +%.o: %.c + @$(CC) -c $(CFLAGS) $< -o $@ + +libc: CFLAGS += -Duserspace -fPIE +libc: $(COBJS) + @mkdir -p ../build/ + @$(AR) qc ../build/libc.a $+ + +libk: CFLAGS += -Dkernel +libk: $(COBJS) + @mkdir -p ../build/ + @$(AR) qc ../build/libk.a $+ + +clean: + @find . -name "*.o" -type f -delete -- cgit v1.2.3