]> mj.ucw.cz Git - moe.git/blob - Makefile
3a68c0808e78039dd5d2309f8e520a2035e43b7c
[moe.git] / Makefile
1 # Makefile for MO-Eval
2 # (c) 2008 Martin Mares <mj@ucw.cz>
3
4 VERSION=1.0.99-20080220
5
6 # The default target
7 all: runtree programs
8
9 # Include configuration
10 s=.
11 -include obj/config.mk
12 obj/config.mk:
13         @echo "You need to run configure first." && false
14
15 # We will use the libucw build system
16 include $(s)/build/Maketop
17
18 # Include makefiles of libraries we wish to use
19 ifdef CONFIG_UCW_LIBS
20 include $(s)/lib/Makefile
21 include $(s)/sherlock/Makefile
22 endif
23
24 include $(s)/box/Makefile
25 include $(s)/utils/Makefile
26
27 # And finally the default rules of the build system
28 include $(s)/build/Makebottom