blob: a8674e40509bb410c5cff5e5de47f37eaeb66b74 [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 Hofmeyrb2553eb2019-11-20 02:36:45 +010011libosmo_gsup_client_la_SOURCES = \
Neels Hofmeyr0d28d852019-12-04 01:04:32 +010012 gsup_peer_id.c \
Neels Hofmeyrb2553eb2019-11-20 02:36:45 +010013 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