aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2012-06-19 14:23:21 +0800
committerHarald Welte <laforge@gnumonks.org>2012-06-19 14:23:21 +0800
commit0b2a316adbba10c91a6e0a6c9f9133bd2221be7e (patch)
tree37969ea6534f2686b7e7e71e7037d72c1695c3bf /src
parent667e39a2ee25b6652595b94bd95b5075779eb024 (diff)
add missing Makefile.am for libosmo-gb
Diffstat (limited to 'src')
-rw-r--r--src/gb/Makefile.am21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/gb/Makefile.am b/src/gb/Makefile.am
new file mode 100644
index 00000000..2b604642
--- /dev/null
+++ b/src/gb/Makefile.am
@@ -0,0 +1,21 @@
+# This is _NOT_ the library release version, it's an API version.
+# Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification
+LIBVERSION=1:0:0
+
+INCLUDES = $(all_includes) -I$(top_srcdir)/include
+AM_CFLAGS = -fPIC -Wall ${GCC_FVISIBILITY_HIDDEN}
+
+# FIXME: this should eventually go into a milenage/Makefile.am
+noinst_HEADERS = common_vty.h
+
+lib_LTLIBRARIES = libosmogb.la
+
+libosmogb_la_LDFLAGS = -Wl,--version-script=$(srcdir)/libosmogb.map -version-info $(LIBVERSION)
+libosmogb_la_LIBADD = $(top_builddir)/src/libosmocore.la
+
+libosmogb_la_SOURCES = gprs_ns.c gprs_ns_frgre.c gprs_ns_vty.c \
+ gprs_bssgp.c gprs_bssgp_util.c gprs_bssgp_vty.c \
+ gprs_bssgp_bss.c common_vty.c
+
+EXTRA_DIST = libosmogb.map
+