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;)