| 29 BUILD_ROOT = ../.. |
29 BUILD_ROOT = ../.. |
| 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 = ucx.c |
34 SRC = allocator.c |
| |
35 SRC += basic_mempool.c |
| |
36 SRC += buffer.c |
| |
37 SRC += hash_key.c |
| |
38 SRC += hash_map.c |
| |
39 SRC += linked_list.c |
| |
40 SRC += list.c |
| |
41 SRC += string.c |
| |
42 SRC += tree.c |
| 35 SRC += utils.c |
43 SRC += utils.c |
| 36 SRC += list.c |
44 SRC += printf.c |
| 37 SRC += map.c |
45 SRC += compare.c |
| 38 SRC += avl.c |
|
| 39 SRC += properties.c |
|
| 40 SRC += mempool.c |
|
| 41 SRC += string.c |
|
| 42 SRC += test.c |
|
| 43 SRC += allocator.c |
|
| 44 SRC += logging.c |
|
| 45 SRC += buffer.c |
|
| 46 SRC += stack.c |
|
| 47 SRC += array.c |
|
| 48 |
46 |
| 49 OBJ = $(SRC:%.c=$(BUILD_ROOT)/build/ucx/%$(OBJ_EXT)) |
47 OBJ = $(SRC:%.c=$(BUILD_ROOT)/build/ucx/%$(OBJ_EXT)) |
| 50 |
48 |
| 51 all: $(BUILD_ROOT)/build/ucx $(BUILD_ROOT)/build/lib/libucx$(LIB_EXT) |
49 all: $(BUILD_ROOT)/build/ucx $(BUILD_ROOT)/build/lib/libucx$(LIB_EXT) |
| 52 |
50 |