Merge commit 'f2699501bc20a1dc5ee965ca1cbb8f18a3471ff8'
[osmocom-bb.git] / src / Makefile
1
2 # this is not really used as we don't do 'make install'. You can still specify
3 # it in case you _want_ to manually 'make install' the target libosmocore.
4 CROSS_INST_PREFIX ?= /usr/local/stow/osmocom-bb/arm-2010.09
5
6 # this is the host tuple of your cross-toolchain
7 CROSS_HOST ?= $(shell which arm-elf-gcc >/dev/null 2>&1 && echo arm-elf || echo arm-none-eabi)
8
9 # this is the prefix of your cross-toolchain programs
10 CROSS_TOOL_PREFIX=$(CROSS_HOST)-
11
12 TOPDIR=$(shell pwd)
13 OSMOCORE_CONFIGURE_ENV= LIBOSMOCORE_LIBS=$(TOPDIR)/shared/libosmocore/build-host/src/.libs/libosmocore.a \
14                         LIBOSMOVTY_LIBS=$(TOPDIR)/shared/libosmocore/build-host/src/vty/.libs/libosmovty.a \
15                         LIBOSMOGSM_LIBS=$(TOPDIR)/shared/libosmocore/build-host/src/gsm/.libs/libosmogsm.a \
16                         LIBOSMOCORE_CFLAGS=-I$(TOPDIR)/shared/libosmocore/include \
17                         LIBOSMOVTY_CFLAGS=-I$(TOPDIR)/shared/libosmocore/include \
18                         LIBOSMOGSM_CFLAGS=-I$(TOPDIR)/shared/libosmocore/include
19
20 all: libosmocore-target nofirmware firmware mtk-firmware
21 nofirmware: libosmocore-host layer23 osmocon gsmmap
22
23 libosmocore-host: shared/libosmocore/build-host/src/.libs/libosmocore.la
24
25 shared/libosmocore/build-host:
26         mkdir $@
27
28 shared/libosmocore/configure: shared/libosmocore/configure.in
29         cd shared/libosmocore && autoreconf -i
30
31 shared/libosmocore/build-host/Makefile: shared/libosmocore/configure shared/libosmocore/build-host
32         cd shared/libosmocore/build-host && ../configure $(HOST_CONFARGS)
33
34 shared/libosmocore/build-host/src/.libs/libosmocore.la: shared/libosmocore/build-host/Makefile
35         cd shared/libosmocore/build-host && make
36
37
38 libosmocore-target: shared/libosmocore/build-target/src/.libs/libosmocore.a
39
40 shared/libosmocore/build-target:
41         mkdir $@
42
43 shared/libosmocore/build-target/Makefile: shared/libosmocore/configure shared/libosmocore/build-target
44         cd shared/libosmocore/build-target && ../configure \
45                         --host=$(CROSS_HOST) --disable-vty --enable-panic-infloop \
46                         --disable-shared --disable-talloc --disable-tests ac_cv_header_sys_select_h=no \
47                 CFLAGS="-Os -ffunction-sections -I$(TOPDIR)/target/firmware/include -nostartfiles -nodefaultlibs"
48
49 shared/libosmocore/build-target/src/.libs/libosmocore.a: shared/libosmocore/build-target/Makefile
50         cd shared/libosmocore/build-target && make
51
52
53 .PHONY: osmocon
54 osmocon: host/osmocon/osmocon
55
56 host/osmocon/configure: host/osmocon/configure.ac
57         cd host/osmocon && autoreconf -i
58
59 host/osmocon/Makefile: host/osmocon/configure
60         cd host/osmocon && $(OSMOCORE_CONFIGURE_ENV) ./configure $(HOST_CONFARGS)
61
62 host/osmocon/osmocon: host/osmocon/Makefile libosmocore-host
63         make -C host/osmocon
64
65
66 .PHONY: gsmmap
67 gsmmap: host/gsmmap/gsmmap
68
69 host/gsmmap/configure: host/gsmmap/configure.ac
70         cd host/gsmmap && autoreconf -i
71
72 host/gsmmap/Makefile: host/gsmmap/configure
73         cd host/gsmmap && $(OSMOCORE_CONFIGURE_ENV) ./configure $(HOST_CONFARGS)
74
75 host/gsmmap/gsmmap: host/gsmmap/Makefile libosmocore-host
76         make -C host/gsmmap
77
78
79 .PHONY: layer23
80 layer23: host/layer23/layer23
81
82 host/layer23/configure: host/layer23/configure.ac
83         cd host/layer23 && autoreconf -i
84
85 host/layer23/Makefile: host/layer23/configure
86         cd host/layer23 && $(OSMOCORE_CONFIGURE_ENV) ./configure $(HOST_CONFARGS)
87
88 host/layer23/layer23: host/layer23/Makefile libosmocore-host
89         make -C host/layer23
90
91
92 .PHONY: firmware
93 firmware: libosmocore-target
94         make -C target/firmware CROSS_COMPILE=$(CROSS_TOOL_PREFIX)
95
96 .PHONY: mtk-firmware
97 mtk-firmware: libosmocore-target
98         make -C target/firmware -f Makefile.mtk CROSS_COMPILE=$(CROSS_TOOL_PREFIX)
99
100
101 clean:
102         make -C shared/libosmocore/build-host $@
103         make -C shared/libosmocore/build-target $@
104         make -C host/layer23 $@
105         make -C host/osmocon $@
106         make -C target/firmware $@
107         make -C target/firmware -f Makefile.mtk $@
108
109 distclean:
110         rm -rf shared/libosmocore/build-host
111         rm -rf shared/libosmocore/build-target
112         make -C host/layer23 $@
113         make -C host/osmocon $@
114 # 'firmware' also handles 'mtk-firmware'
115         make -C target/firmware $@