blob: 8f70da76915cbe064166a428a69298b0e39ece7e [file] [log] [blame]
Alexander Huemer7b6673f2016-09-09 00:43:15 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 -I$(top_builddir) \
5 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +01006
Alexander Huemer7b6673f2016-09-09 00:43:15 +02007AM_CFLAGS = \
8 -Wall \
9 $(LIBOSMOCORE_CFLAGS) \
10 $(LIBOSMOGSM_CFLAGS) \
11 $(LIBOSMOVTY_CFLAGS) \
12 $(LIBOSMOABIS_CFLAGS) \
Alexander Huemerf6d6a572017-12-02 21:52:34 +010013 $(LIBOSMOSCCP_CFLAGS) \
14 $(LIBOSMOMGCPCLIENT_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020015 $(COVERAGE_CFLAGS) \
16 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +010017
Alexander Huemer7b6673f2016-09-09 00:43:15 +020018noinst_LIBRARIES = \
19 libcommon.a \
20 $(NULL)
21
22libcommon_a_SOURCES = \
23 bsc_version.c \
24 common_vty.c \
25 debug.c \
26 gsm_data.c \
Neels Hofmeyr2c1f8c82016-12-08 22:27:22 +010027 gsup_client.c \
Neels Hofmeyr3d6b9f42016-12-08 22:29:27 +010028 oap_client.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020029 socket.c \
30 talloc_ctx.c \
31 gsm_subscriber_base.c \
32 $(NULL)
Neels Hofmeyr2c1f8c82016-12-08 22:27:22 +010033
34noinst_PROGRAMS = \
35 gsup_test_client \
36 $(NULL)
37
38gsup_test_client_SOURCES = \
39 gsup_test_client.c \
40 $(NULL)
41gsup_test_client_LDADD = \
42 libcommon.a \
43 $(LIBOSMOCORE_LIBS) \
44 $(LIBOSMOGSM_LIBS) \
45 $(LIBOSMOVTY_LIBS) \
46 $(LIBOSMOABIS_LIBS) \
47 -lrt \
48 $(NULL)