gsm/gsm48_ie: Fix frequency list decoding
[osmocom-bb.git] / src / Makefile.am
1 SUBDIRS=. vty codec gsm
2
3 # This is _NOT_ the library release version, it's an API version.
4 # Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification
5 LIBVERSION=2:0:0
6
7 INCLUDES = $(all_includes) -I$(top_srcdir)/include
8 AM_CFLAGS = -fPIC -Wall
9
10 lib_LTLIBRARIES = libosmocore.la
11
12 libosmocore_la_SOURCES = timer.c select.c signal.c msgb.c bits.c \
13                          bitvec.c statistics.c \
14                          write_queue.c utils.c socket.c \
15                          logging.c logging_syslog.c rate_ctr.c \
16                          gsmtap_util.c crc16.c panic.c backtrace.c \
17                          conv.c application.c
18
19 if ENABLE_PLUGIN
20 libosmocore_la_SOURCES += plugin.c
21 libosmocore_la_LDFLAGS = -version-info $(LIBVERSION) -ldl
22 else
23 libosmocore_la_LDFLAGS = -version-info $(LIBVERSION)
24 endif
25
26 if ENABLE_TALLOC
27 libosmocore_la_SOURCES += talloc.c
28 endif
29
30 if ENABLE_MSGFILE
31 libosmocore_la_SOURCES += msgfile.c
32 endif