blob: 38b158236bcce6a035921c28d2b5cee4685b88e8 [file] [log] [blame]
Harald Welteec6915a2018-07-23 14:25:33 +02001# 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_CFLAGS = -Wall $(all_includes) -I$(top_srcdir)/include -I$(top_builddir)/include \
7 $(TALLOC_CFLAGS) $(LIBOSMOCORE_CFLAGS) $(LIBOSMOABIS_CFLAGS)
8
9lib_LTLIBRARIES = libosmo-gsup-client.la
10
Neels Hofmeyrad868e22019-11-20 02:36:45 +010011libosmo_gsup_client_la_SOURCES = \
12 ipa_name.c \
13 gsup_client.c \
14 gsup_req.c \
15 $(NULL)
Harald Welteec6915a2018-07-23 14:25:33 +020016
17libosmo_gsup_client_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined
18libosmo_gsup_client_la_LIBADD = $(TALLOC_LIBS) $(LIBOSMOCORE_LIBS) $(LIBOSMOABIS_LIBS)
19
20noinst_PROGRAMS = gsup-test-client
21
22gsup_test_client_SOURCES = gsup_test_client.c
23gsup_test_client_LDADD = $(TALLOC_LIBS) $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) \
24 libosmo-gsup-client.la