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