aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile
blob: 66181c8757d1367c9df9981c3c859505e7e4db03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
include ../Makefile.config

CCFLAGS += -I. -I..

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
	$(foreach f,$^,./$f;)