blob: 737265bafac613ef0d9925370f8f06b21f9c3c17 [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) \
13 $(COVERAGE_CFLAGS) \
14 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +010015
Alexander Huemer7b6673f2016-09-09 00:43:15 +020016noinst_LIBRARIES = \
17 libcommon.a \
18 $(NULL)
19
20libcommon_a_SOURCES = \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020021 common_vty.c \
22 debug.c \
23 gsm_data.c \
24 gsm_data_shared.c \
Neels Hofmeyr2c1f8c82016-12-08 22:27:22 +010025 gsup_client.c \
Neels Hofmeyr3d6b9f42016-12-08 22:29:27 +010026 oap_client.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020027 socket.c \
28 talloc_ctx.c \
29 gsm_subscriber_base.c \
30 $(NULL)
Neels Hofmeyr2c1f8c82016-12-08 22:27:22 +010031
32noinst_PROGRAMS = \
33 gsup_test_client \
34 $(NULL)
35
36gsup_test_client_SOURCES = \
37 gsup_test_client.c \
38 $(NULL)
39gsup_test_client_LDADD = \
40 libcommon.a \
41 $(LIBOSMOCORE_LIBS) \
42 $(LIBOSMOGSM_LIBS) \
43 $(LIBOSMOVTY_LIBS) \
44 $(LIBOSMOABIS_LIBS) \
45 -lrt \
46 $(NULL)