comparison: Makefile
Makefile
- changeset 19
- 6a26114297a1
- parent 13
- faec61c4901f
- child 20
- fd1eb081de40
equal
deleted
inserted
replaced
26 # POSSIBILITY OF SUCH DAMAGE. |
26 # POSSIBILITY OF SUCH DAMAGE. |
27 # |
27 # |
28 |
28 |
29 include conf.mk |
29 include conf.mk |
30 |
30 |
31 all: build build/rules |
31 all: build chess |
32 cd src; $(MAKE) |
32 cd src; $(MAKE) |
33 |
33 |
34 build: |
34 build: |
35 $(MKDIR) build |
35 $(MKDIR) build |
36 |
36 |
37 build/rules: |
37 chess: |
38 $(MKDIR) build/rules |
38 cd src/chess; $(MAKE) BUILDDIR=../../build |
39 |
39 |
40 clean: |
40 clean: |
41 $(RM) -f -R build |
41 $(RM) -f -R build |
42 $(RM) -f -R build/rules |
|