LOGGING: Add syslog log target
[osmocom-bb.git] / src / Makefile.am
1 SUBDIRS=. vty codec
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=0: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 rxlev_stat.c bits.c \
13                          tlv_parser.c bitvec.c comp128.c gsm_utils.c statistics.c \
14                          write_queue.c utils.c rsl.c gsm48.c gsm48_ie.c \
15                          logging.c logging_syslog.c gsm0808.c rate_ctr.c \
16                          gsmtap_util.c gprs_cipher_core.c crc16.c panic.c \
17                          process.c gsm0480.c
18
19 if ENABLE_PLUGIN
20 libosmocore_la_SOURCES += plugin.c
21 libosmocore_la_LDFLAGS = -ldl
22 endif
23
24 if ENABLE_TALLOC
25 libosmocore_la_SOURCES += talloc.c
26 endif
27
28 if ENABLE_MSGFILE
29 libosmocore_la_SOURCES += msgfile.c
30 endif