blob: 07fb6f427becf7c4011d59e98af06b953f8864e4 [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 = \
Oliver Smith3a9f2672019-11-20 10:56:35 +010013 mdns.c \
14 mdns_msg.c \
15 mdns_rfc.c \
16 mdns_sock.c \
Oliver Smithbf7deda2019-11-20 10:56:35 +010017 mslookup.c \
18 mslookup_client.c \
19 mslookup_client_fake.c \
Oliver Smith3a9f2672019-11-20 10:56:35 +010020 mslookup_client_mdns.c \
Oliver Smithbf7deda2019-11-20 10:56:35 +010021 $(NULL)
22
23libosmo_mslookup_la_LDFLAGS = -version-info $(LIBVERSION)
24libosmo_mslookup_la_LIBADD = \
25 $(LIBOSMOCORE_LIBS) \
26 $(LIBOSMOGSM_LIBS) \
27 $(TALLOC_LIBS) \
28 $(NULL)