blob: 71d47364f3d77441f1626480bbcca6ceffdf9359 [file] [log] [blame]
Harald Welte0b2a3162012-06-19 14:23:21 +08001# This is _NOT_ the library release version, it's an API version.
2# Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification
Holger Hans Peter Freytherd296f422012-08-03 09:59:20 +02003LIBVERSION=2:0:0
Harald Welte0b2a3162012-06-19 14:23:21 +08004
5INCLUDES = $(all_includes) -I$(top_srcdir)/include
Harald Welteca0af8a2012-09-07 12:01:28 +02006AM_CFLAGS = -Wall ${GCC_FVISIBILITY_HIDDEN} -fno-strict-aliasing
Harald Welte0b2a3162012-06-19 14:23:21 +08007
8# FIXME: this should eventually go into a milenage/Makefile.am
9noinst_HEADERS = common_vty.h
10
11lib_LTLIBRARIES = libosmogb.la
12
13libosmogb_la_LDFLAGS = -Wl,--version-script=$(srcdir)/libosmogb.map -version-info $(LIBVERSION)
Holger Hans Peter Freyther5a19bf72012-08-02 21:51:15 +020014libosmogb_la_LIBADD = \
15 $(top_builddir)/src/libosmocore.la \
16 $(top_builddir)/src/vty/libosmovty.la \
17 $(top_builddir)/src/gsm/libosmogsm.la
Harald Welte0b2a3162012-06-19 14:23:21 +080018
19libosmogb_la_SOURCES = gprs_ns.c gprs_ns_frgre.c gprs_ns_vty.c \
20 gprs_bssgp.c gprs_bssgp_util.c gprs_bssgp_vty.c \
21 gprs_bssgp_bss.c common_vty.c
22
23EXTRA_DIST = libosmogb.map
24