aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile15
1 files changed, 11 insertions, 4 deletions
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