summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorAlex Badea <vamposdecampos@gmail.com>2010-11-17 23:35:18 +0200
committerHarald Welte <laforge@gnumonks.org>2010-11-17 23:39:46 +0100
commit56f990976c2334e87935dedea595b3a14d209bbc (patch)
treea7bba7071aa9f7924537f1aa56cfd82b10d907b8 /src/Makefile
parentd45476dad9da376d51dd93ff4899512dfd3cce16 (diff)
toplevel Makefile: accept arguments for host ./configure calls
Append $(HOST_CONFARGS) to ./configure scripts for 'host' applications. This allows e.g. cross-compiling on an x86 build system for an OpenMoko gta0x host, using an invocation such as: $ make HOST_CONFARGS="--host=arm-angstrom-linux-gnueabi" Signed-off-by: Alex Badea <vamposdecampos@gmail.com>
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile
index c8caff08..1567d2de 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -23,7 +23,7 @@ shared/libosmocore/configure: shared/libosmocore/configure.in
cd shared/libosmocore && autoreconf -i
shared/libosmocore/build-host/Makefile: shared/libosmocore/configure shared/libosmocore/build-host
- cd shared/libosmocore/build-host && ../configure
+ cd shared/libosmocore/build-host && ../configure $(HOST_CONFARGS)
shared/libosmocore/build-host/src/.libs/libosmocore.la: shared/libosmocore/build-host/Makefile
cd shared/libosmocore/build-host && make
@@ -51,7 +51,7 @@ host/osmocon/configure: host/osmocon/configure.ac
cd host/osmocon && autoreconf -i
host/osmocon/Makefile: host/osmocon/configure
- cd host/osmocon && $(OSMOCORE_CONFIGURE_ENV) ./configure
+ cd host/osmocon && $(OSMOCORE_CONFIGURE_ENV) ./configure $(HOST_CONFARGS)
host/osmocon/osmocon: host/osmocon/Makefile libosmocore-host
make -C host/osmocon
@@ -64,7 +64,7 @@ host/gsmmap/configure: host/gsmmap/configure.ac
cd host/gsmmap && autoreconf -i
host/gsmmap/Makefile: host/gsmmap/configure
- cd host/gsmmap && $(OSMOCORE_CONFIGURE_ENV) ./configure
+ cd host/gsmmap && $(OSMOCORE_CONFIGURE_ENV) ./configure $(HOST_CONFARGS)
host/gsmmap/gsmmap: host/gsmmap/Makefile libosmocore-host
make -C host/gsmmap
@@ -77,7 +77,7 @@ host/layer23/configure: host/layer23/configure.ac
cd host/layer23 && autoreconf -i
host/layer23/Makefile: host/layer23/configure
- cd host/layer23 && $(OSMOCORE_CONFIGURE_ENV) ./configure
+ cd host/layer23 && $(OSMOCORE_CONFIGURE_ENV) ./configure $(HOST_CONFARGS)
host/layer23/layer23: host/layer23/Makefile libosmocore-host
make -C host/layer23