From 07ea42f2e14fe6a26756820d318d1e5e22f09de3 Mon Sep 17 00:00:00 2001 From: Gitea Date: Mon, 21 Dec 2020 20:54:51 -0600 Subject: [PATCH] Gotta figure out what libk is --- makefile | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/makefile b/makefile index 39996cf..3fbd5f3 100755 --- a/makefile +++ b/makefile @@ -29,6 +29,23 @@ LIBK_CPPFLAGS:=$(LIBK_CPPFLAGS) $(KERNEL_ARCH_CPPFLAGS) FREEOBJS=\ $(ARCH_FREEOBJS) \ +ctype/isalnum.o \ +ctype/isalpha.o \ +ctype/isascii.o \ +ctype/isblank.o \ +ctype/iscntrl.o \ +ctype/isdigit.o \ +ctype/isgraph.o \ +ctype/islower.o \ +ctype/isprint.o \ +ctype/ispunct.o \ +ctype/isspace.o \ +ctype/isupper.o \ +ctype/isxdigit.o \ +ctype/tolower.o \ +ctype/toupper.o \ +stdlib/abort.o \ +stdlib/bsearch.o \ stdio/printf.o \ stdio/putchar.o \ stdio/puts.o \ @@ -37,17 +54,18 @@ string/memcpy.o \ string/memmove.o \ string/memset.o \ string/strcmp.o \ +string/strcspn.o \ string/strlen.o \ +string/strtok.o \ HOSTEDOBJS=\ -$(ARCH_HOSTEDOBJS) +$(ARCH_HOSTEDOBJS) \ math/cos.o \ math/cosf.o \ math/cosl.o \ math/fabs.o \ math/fabsf.o \ math/fabsl.o \ -stdlib/abort.o \ stdlib/abs.o \ stdlib/div.o \ stdlib/labs.o \ @@ -55,8 +73,6 @@ stdlib/ldiv.o \ stdlib/llabs.o \ stdlib/lldiv.o \ stdlib/rand.o \ -string/strcspn.o \ -string/strtok.o \ time/time.o OBJS=\