comparison: Makefile
Makefile
- changeset 61
- 47a5fc33590a
- parent 55
- bf54085ce341
- child 62
- 3fff4c364ffc
equal
deleted
inserted
replaced
| 32 include $(CONF).mk |
32 include $(CONF).mk |
| 33 |
33 |
| 34 SRC = frontend.c |
34 SRC = frontend.c |
| 35 SRC += c2html.c |
35 SRC += c2html.c |
| 36 SRC += highlighter.c |
36 SRC += highlighter.c |
| 37 SRC += ucx/allocator.c |
|
| 38 SRC += ucx/buffer.c |
|
| 39 SRC += ucx/list.c |
|
| 40 SRC += ucx/string.c |
|
| 41 SRC += ucx/utils.c |
|
| 42 |
37 |
| 43 OBJ = $(SRC:%.c=build/%$(OBJ_EXT)) |
38 OBJ = $(SRC:%.c=build/%$(OBJ_EXT)) |
| 44 |
39 |
| 45 all: build/ucx build/$(BIN) |
40 all: build/ucx build/$(BIN) |
| 46 |
41 |