blob: 7eb14fa49fed3b3b6fc699ea76682a8b188cdd54 [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) \
9 $(LIBOSMOGSM_CFLAGS) \
10 $(LIBCRYPTO_CFLAGS) \
11 $(NULL)
Neels Hofmeyr37984bd2016-03-30 11:22:24 +020012
Alexander Huemer7b6673f2016-09-09 00:43:15 +020013noinst_PROGRAMS = \
14 mm_auth_test \
15 $(NULL)
Neels Hofmeyr37984bd2016-03-30 11:22:24 +020016
Alexander Huemer7b6673f2016-09-09 00:43:15 +020017EXTRA_DIST = \
18 mm_auth_test.ok \
19 $(NULL)
20
21mm_auth_test_SOURCES = \
22 mm_auth_test.c \
23 $(NULL)
Neels Hofmeyr37984bd2016-03-30 11:22:24 +020024
25mm_auth_test_LDFLAGS = \
26 -Wl,--wrap=db_get_authinfo_for_subscr \
27 -Wl,--wrap=db_get_lastauthtuple_for_subscr \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020028 -Wl,--wrap=db_sync_lastauthtuple_for_subscr \
29 $(NULL)
Neels Hofmeyr37984bd2016-03-30 11:22:24 +020030
Alexander Huemer7b6673f2016-09-09 00:43:15 +020031mm_auth_test_LDADD = \
32 $(top_builddir)/src/libmsc/libmsc.a \
33 $(top_builddir)/src/libcommon/libcommon.a \
34 $(LIBOSMOCORE_LIBS) \
35 $(LIBOSMOGSM_LIBS) \
36 $(NULL)