add rbtree/testcase.c/Makefile

This commit is contained in:
King
2024-05-23 15:49:09 +00:00
parent 1b865836df
commit ea5291f3fe
6 changed files with 868 additions and 8 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
CC = gcc
TARGET = kvstore
SRCS = kvstore.c ntyco.c proactor.c kvs_array.c kvs_rbtree.c
INC = -I ./NtyCo/core/
LIBS = -L ./NtyCo/ -lntyco -luring
all:
$(CC) -o $(TARGET) $(SRCS) $(INC) $(LIBS)
clean:
rm -rf kvstore