blob: 01be401cf5d79049652063c50fa8f23c418c0474 [file] [log] [blame]
Oliver Smithbf7deda2019-11-20 10:56:35 +01001# This is _NOT_ the library release version, it's an API version.
2# Please read chapter "Library interface versions" of the libtool documentation
3# before making any modifications: https://www.gnu.org/software/libtool/manual/html_node/Versioning.html
4LIBVERSION=0:0:0
5
6AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir)/include
7AM_CFLAGS = -fPIC -Wall $(PCSC_CFLAGS) $(TALLOC_CFLAGS) $(LIBOSMOCORE_CFLAGS)
8AM_LDFLAGS = $(COVERAGE_LDFLAGS)
9
10lib_LTLIBRARIES = libosmo-mslookup.la
11
12libosmo_mslookup_la_SOURCES = \
13 mslookup.c \
14 mslookup_client.c \
15 mslookup_client_fake.c \
16 $(NULL)
17
18libosmo_mslookup_la_LDFLAGS = -version-info $(LIBVERSION)
19libosmo_mslookup_la_LIBADD = \
20 $(LIBOSMOCORE_LIBS) \
21 $(LIBOSMOGSM_LIBS) \
22 $(TALLOC_LIBS) \
23 $(NULL)