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

CCFLAGS += -I. -I..

libk.SRCS = memcpy.c memset.c stdio/printf.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;)