30 |
30 |
31 include $(BUILD_ROOT)/config.mk |
31 include $(BUILD_ROOT)/config.mk |
32 |
32 |
33 # list of source files |
33 # list of source files |
34 SRC = allocator.c |
34 SRC = allocator.c |
35 SRC += basic_mempool.c |
35 SRC += mempool.c |
36 SRC += buffer.c |
36 SRC += buffer.c |
37 SRC += hash_key.c |
37 SRC += hash_key.c |
38 SRC += hash_map.c |
38 SRC += hash_map.c |
39 SRC += linked_list.c |
39 SRC += linked_list.c |
40 SRC += array_list.c |
40 SRC += array_list.c |
41 SRC += list.c |
41 SRC += list.c |
42 SRC += string.c |
42 SRC += string.c |
43 SRC += tree.c |
|
44 SRC += utils.c |
43 SRC += utils.c |
45 SRC += printf.c |
44 SRC += printf.c |
46 SRC += compare.c |
45 SRC += compare.c |
47 |
46 |
48 OBJ = $(SRC:%.c=$(BUILD_ROOT)/build/ucx/%$(OBJ_EXT)) |
47 OBJ = $(SRC:%.c=$(BUILD_ROOT)/build/ucx/%$(OBJ_EXT)) |