blob: 2b604642934e9299759ba2e0d7c726cad3a0f4ea [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
3LIBVERSION=1:0:0
4
5INCLUDES = $(all_includes) -I$(top_srcdir)/include
6AM_CFLAGS = -fPIC -Wall ${GCC_FVISIBILITY_HIDDEN}
7
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)
14libosmogb_la_LIBADD = $(top_builddir)/src/libosmocore.la
15
16libosmogb_la_SOURCES = gprs_ns.c gprs_ns_frgre.c gprs_ns_vty.c \
17 gprs_bssgp.c gprs_bssgp_util.c gprs_bssgp_vty.c \
18 gprs_bssgp_bss.c common_vty.c
19
20EXTRA_DIST = libosmogb.map
21