comparison: src/ucx/Makefile
src/ucx/Makefile
- changeset 579
- e10457d74fe1
- parent 504
- c094afcdfb27
equal
deleted
inserted
replaced
34 SRC = allocator.c |
34 SRC = allocator.c |
35 SRC += 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 += map.c |
39 SRC += linked_list.c |
40 SRC += linked_list.c |
40 SRC += array_list.c |
41 SRC += array_list.c |
41 SRC += list.c |
42 SRC += list.c |
42 SRC += string.c |
43 SRC += string.c |
43 SRC += utils.c |
|
44 SRC += printf.c |
44 SRC += printf.c |
45 SRC += compare.c |
45 SRC += compare.c |
|
46 SRC += tree.c |
|
47 SRC += streams.c |
|
48 SRC += json.c |
|
49 SRC += properties.c |
|
50 SRC += iterator.c |
46 |
51 |
47 OBJ = $(SRC:%.c=$(BUILD_ROOT)/build/ucx/%$(OBJ_EXT)) |
52 OBJ = $(SRC:%.c=$(BUILD_ROOT)/build/ucx/%$(OBJ_EXT)) |
48 |
53 |
49 all: $(BUILD_ROOT)/build/ucx $(BUILD_ROOT)/build/lib/libucx$(LIB_EXT) |
54 all: $(BUILD_ROOT)/build/ucx $(BUILD_ROOT)/build/lib/libucx$(LIB_EXT) |
50 |
55 |