comparison: src/Makefile
src/Makefile
- changeset 179
- ef6827505bd2
- parent 175
- 9823770ba4ee
equal
deleted
inserted
replaced
26 # POSSIBILITY OF SUCH DAMAGE. |
26 # POSSIBILITY OF SUCH DAMAGE. |
27 # |
27 # |
28 |
28 |
29 BUILD_ROOT = ../ |
29 BUILD_ROOT = ../ |
30 |
30 |
31 all: _ucx _server |
31 all: ucx server tools |
32 |
32 |
33 |
33 |
34 _ucx: |
34 ucx: .FORCE |
35 cd ucx; $(MAKE) |
35 cd ucx; $(MAKE) |
36 |
36 |
37 _server: |
37 server: ucx .FORCE |
38 cd server; $(MAKE) |
38 cd server; $(MAKE) |
|
39 |
|
40 tools: server .FORCE |
|
41 cd tools; $(MAKE) |
|
42 |
|
43 .FORCE: |
|
44 |