aboutsummaryrefslogtreecommitdiffstats
path: root/src/libosmo-gtlv/Makefile.am
blob: 3bef253ab98bdecaeb6377a6fad74f85bcefeb6f (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
AM_CPPFLAGS = \
	-I$(top_srcdir)/include \
	-I$(top_builddir) \
	-I$(builddir) \
	$(NULL)

AM_CFLAGS = \
	-Wall \
	$(LIBOSMOCORE_CFLAGS) \
	$(NULL)

lib_LTLIBRARIES = \
	libosmo-gtlv.la \
	$(NULL)

libosmo_gtlv_la_SOURCES = \
	gtlv.c \
	gtlv_dec_enc.c \
	gtlv_gen.c \
	$(NULL)

libosmo_gtlv_la_LIBADD = \
	$(LIBOSMOCORE_LIBS) \
	$(NULL)

# 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:0:0

libosmo_gtlv_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined -export-symbols-regex '^osmo_'