From 2e0702c597e3099316c8c82379c3425ecc7a2dd2 Mon Sep 17 00:00:00 2001 From: aqua Date: Sun, 6 Nov 2022 14:29:39 +0200 Subject: lib/malloc: add linked list implementation --- lib/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/Makefile') 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) -- cgit v1.2.1