comparison: src/ucx/Makefile
src/ucx/Makefile
- branch
- webdav
- changeset 259
- 0b8692959d37
- parent 254
- 4784c14aa639
- child 415
- d938228c382e
equal
deleted
inserted
replaced
| 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 = utils.c |
34 SRC = ucx.c |
| |
35 SRC += utils.c |
| 35 SRC += list.c |
36 SRC += list.c |
| 36 SRC += map.c |
37 SRC += map.c |
| 37 SRC += avl.c |
38 SRC += avl.c |
| 38 SRC += properties.c |
39 SRC += properties.c |
| 39 SRC += mempool.c |
40 SRC += mempool.c |
| 41 SRC += test.c |
42 SRC += test.c |
| 42 SRC += allocator.c |
43 SRC += allocator.c |
| 43 SRC += logging.c |
44 SRC += logging.c |
| 44 SRC += buffer.c |
45 SRC += buffer.c |
| 45 SRC += stack.c |
46 SRC += stack.c |
| |
47 SRC += array.c |
| 46 |
48 |
| 47 OBJ = $(SRC:%.c=$(BUILD_ROOT)/build/ucx/%$(OBJ_EXT)) |
49 OBJ = $(SRC:%.c=$(BUILD_ROOT)/build/ucx/%$(OBJ_EXT)) |
| 48 |
50 |
| 49 all: $(BUILD_ROOT)/build/ucx $(BUILD_ROOT)/build/lib/libucx$(LIB_EXT) |
51 all: $(BUILD_ROOT)/build/ucx $(BUILD_ROOT)/build/lib/libucx$(LIB_EXT) |
| 50 |
52 |