| 31 |
31 |
| 32 # list of source files |
32 # list of source files |
| 33 SRC = utils.c |
33 SRC = utils.c |
| 34 SRC += list.c |
34 SRC += list.c |
| 35 SRC += map.c |
35 SRC += map.c |
| |
36 SRC += avl.c |
| 36 SRC += properties.c |
37 SRC += properties.c |
| 37 SRC += mempool.c |
38 SRC += mempool.c |
| 38 SRC += string.c |
39 SRC += string.c |
| 39 SRC += test.c |
40 SRC += test.c |
| 40 SRC += allocator.c |
41 SRC += allocator.c |
| 41 SRC += logging.c |
42 SRC += logging.c |
| 42 SRC += buffer.c |
43 SRC += buffer.c |
| |
44 SRC += stack.c |
| 43 |
45 |
| 44 OBJ = $(SRC:%.c=../build/ucx/%.$(OBJ_EXT)) |
46 OBJ = $(SRC:%.c=../build/ucx/%.$(OBJ_EXT)) |
| 45 |
47 |
| 46 UCX_LIB = ../build/lib/libucx.$(LIB_EXT) |
48 UCX_LIB = ../build/lib/libucx.$(LIB_EXT) |
| 47 |
49 |