From f163a5d5f6802f63092229f0f9326e5fb44b7908 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 9 Aug 2020 21:55:42 +0200 Subject: Added malloc/free syscall --- lib/Makefile | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'lib/Makefile') diff --git a/lib/Makefile b/lib/Makefile index 730ed6d..ef56b3a 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -18,11 +18,18 @@ 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/ -all: compile - %.o: %.c @$(CC) -c $(CFLAGS) $< -o $@ -compile: $(COBJS) +libc: CFLAGS += -Duserspace +libc: $(COBJS) + @mkdir -p ../build/ + @$(AR) qc ../build/libc.a $+ + +libk: CFLAGS += -Dkernel +libk: $(COBJS) @mkdir -p ../build/ - @$(AR) qc ../build/libc.a $(COBJS) + @$(AR) qc ../build/libk.a $+ + +clean: + @find . -name "*.o" -type f -delete -- cgit v1.2.3