diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-11-08 10:46:07 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-11-08 14:56:42 +0200 |
commit | 527a5ea7a896a9b00e0563abbbed7771a398971b (patch) | |
tree | 81dcbe1b95c88bea447dfcc32d6fed46835713bb /lib/Makefile | |
parent | Capture ps2 mouse packets (diff) | |
download | kernel-527a5ea7a896a9b00e0563abbbed7771a398971b.tar.xz |
Add python-sphinx docs
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index dec0769..66181c8 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -2,11 +2,12 @@ include ../Makefile.config CCFLAGS += -I. -I.. -libk.SRCS = memcpy.c memset.c stdio/printf.c string/itoa.c +libk.SRCS = stdio/printf.c \ + stdlib/memcpy.c stdlib/memset.c \ + string/itoa.c include ../rules.mk .PHONY: test test: tst/test_mem tst/test_string tst/test_linked_list_allocator - @echo $^ $(foreach f,$^,./$f;) |