diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-11-06 14:29:39 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-11-06 14:29:39 +0200 |
commit | 2e0702c597e3099316c8c82379c3425ecc7a2dd2 (patch) | |
tree | 58860a91682a61d1e5bdf24b73617b4ad49b0de6 /lib/Makefile | |
parent | makefile: replace ,SRCS with .SRCS (diff) | |
download | kernel-2e0702c597e3099316c8c82379c3425ecc7a2dd2.tar.xz |
lib/malloc: add linked list implementation
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 0da59de..042eccc 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -6,3 +6,6 @@ libk.SRCS = memcpy.c memset.c stdio/printf.c string/itoa.c include ../rules.mk +.PHONY: test +test: tst/test_linked_list_allocator + @$(foreach f,$^,./$f) |