blob: cb351988b37cb6519577278adb1fcf3714878e64 [file] [log] [blame]
Alexander Huemer7b6673f2016-09-09 00:43:15 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 $(NULL)
Neels Hofmeyr37984bd2016-03-30 11:22:24 +02005
Alexander Huemer7b6673f2016-09-09 00:43:15 +02006AM_CFLAGS = \
7 -Wall \
8 $(LIBOSMOCORE_CFLAGS) \
Alexander Huemerc2f2ad82016-09-15 16:02:18 +02009 $(LIBOSMOABIS_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020010 $(LIBOSMOGSM_CFLAGS) \
11 $(LIBCRYPTO_CFLAGS) \
12 $(NULL)
Neels Hofmeyr37984bd2016-03-30 11:22:24 +020013
Alexander Huemer7b6673f2016-09-09 00:43:15 +020014noinst_PROGRAMS = \
15 mm_auth_test \
16 $(NULL)
Neels Hofmeyr37984bd2016-03-30 11:22:24 +020017
Alexander Huemer7b6673f2016-09-09 00:43:15 +020018EXTRA_DIST = \
19 mm_auth_test.ok \
20 $(NULL)
21
22mm_auth_test_SOURCES = \
23 mm_auth_test.c \
24 $(NULL)
Neels Hofmeyr37984bd2016-03-30 11:22:24 +020025
26mm_auth_test_LDFLAGS = \
27 -Wl,--wrap=db_get_authinfo_for_subscr \
28 -Wl,--wrap=db_get_lastauthtuple_for_subscr \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020029 -Wl,--wrap=db_sync_lastauthtuple_for_subscr \
30 $(NULL)
Neels Hofmeyr37984bd2016-03-30 11:22:24 +020031
Alexander Huemer7b6673f2016-09-09 00:43:15 +020032mm_auth_test_LDADD = \
33 $(top_builddir)/src/libmsc/libmsc.a \
34 $(top_builddir)/src/libcommon/libcommon.a \
35 $(LIBOSMOCORE_LIBS) \
36 $(LIBOSMOGSM_LIBS) \
37 $(NULL)