Gotta figure out what libk is
This commit is contained in:
parent
8fd6c4b295
commit
07ea42f2e1
1 changed files with 20 additions and 4 deletions
24
makefile
24
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=\
|
||||
|
|
Loading…
Reference in a new issue