summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/src
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-09-08 00:45:29 +0300
committerVadim Yanitskiy <axilirator@gmail.com>2018-10-03 18:43:07 +0700
commit02a6c8bb447bd437e5523663cadfb3999c9540ea (patch)
tree0d44ec8c29d34b29626414766b42a07e39abb76e /src/host/layer23/src
parent9a948a4e41ad3f708dd725692f7dcc01a8b0199d (diff)
mobile: link the binary against libosmogapk
Since GAPK has became a shared library - libosmogapk, it can be used for the voice capture / playback directly on the host side. This change adds the library as a dependency, and links the mobile application against it. Change-Id: I47054f32fec6780bdbe6f73b82aa446c4c7c1df4
Diffstat (limited to 'src/host/layer23/src')
-rw-r--r--src/host/layer23/src/mobile/Makefile.am2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/host/layer23/src/mobile/Makefile.am b/src/host/layer23/src/mobile/Makefile.am
index b99f69bb..1b912fcc 100644
--- a/src/host/layer23/src/mobile/Makefile.am
+++ b/src/host/layer23/src/mobile/Makefile.am
@@ -7,6 +7,7 @@ AM_CFLAGS = \
-Wall \
$(LIBOSMOCORE_CFLAGS) \
$(LIBOSMOGSM_CFLAGS) \
+ $(LIBOSMOGAPK_CFLAGS) \
$(LIBGPS_CFLAGS) \
$(LIBLUA_CFLAGS) \
$(NULL)
@@ -15,6 +16,7 @@ LDADD = \
$(top_srcdir)/src/common/liblayer23.a \
$(LIBOSMOCORE_LIBS) \
$(LIBOSMOCODEC_LIBS) \
+ $(LIBOSMOGAPK_LIBS) \
$(LIBOSMOGSM_LIBS) \
$(LIBOSMOVTY_LIBS) \
$(LIBGPS_LIBS) \