32 |
32 |
33 # list of source files |
33 # list of source files |
34 SRC = utils.c |
34 SRC = utils.c |
35 SRC += list.c |
35 SRC += list.c |
36 SRC += map.c |
36 SRC += map.c |
|
37 SRC += avl.c |
37 SRC += properties.c |
38 SRC += properties.c |
38 SRC += mempool.c |
39 SRC += mempool.c |
39 SRC += string.c |
40 SRC += string.c |
40 SRC += test.c |
41 SRC += test.c |
41 SRC += allocator.c |
42 SRC += allocator.c |
42 SRC += logging.c |
43 SRC += logging.c |
43 SRC += buffer.c |
44 SRC += buffer.c |
|
45 SRC += stack.c |
44 |
46 |
45 OBJ = $(SRC:%.c=$(BUILD_ROOT)/build/ucx/%$(OBJ_EXT)) |
47 OBJ = $(SRC:%.c=$(BUILD_ROOT)/build/ucx/%$(OBJ_EXT)) |
46 |
48 |
47 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) |
48 |
50 |