aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding/Makefile.am
blob: f47fe457c70c4793a5d0a6dcf2d12bfaf6212e78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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:1:1

AM_CPPFLAGS = \
	-I"$(top_srcdir)/include" \
	-I"$(top_builddir)/include" \
	$(TALLOC_CFLAGS)
AM_CFLAGS = -Wall

if ENABLE_PSEUDOTALLOC
AM_CPPFLAGS += -I$(top_srcdir)/src/pseudotalloc
endif

lib_LTLIBRARIES = libosmocoding.la

libosmocoding_la_SOURCES = \
	gsm0503_interleaving.c \
	gsm0503_mapping.c \
	gsm0503_tables.c \
	gsm0503_parity.c \
	gsm0503_coding.c
libosmocoding_la_LDFLAGS = \
	$(LTLDFLAGS_OSMOCODING) \
	-version-info \
	$(LIBVERSION) \
	-no-undefined \
	$(TALLOC_LIBS)
libosmocoding_la_LIBADD = \
	../libosmocore.la \
	../gsm/libosmogsm.la \
	../codec/libosmocodec.la

EXTRA_DIST = libosmocoding.map