blob: 47ae66c5733107bda50c38ae2530af97881cd3f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
INCLUDES = \
-I$(top_srcdir)/include \
-I$(top_builddir)/include \
-I$(top_srcdir)/libnm-util \
-I$(top_builddir)/libnm-util \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/supplicant-manager
noinst_PROGRAMS = test-supplicant-config
test_supplicant_config_SOURCES = \
test-supplicant-config.c
test_supplicant_config_CPPFLAGS = \
$(GLIB_CFLAGS) \
$(DBUS_CFLAGS)
test_supplicant_config_LDADD = \
$(top_builddir)/libnm-util/libnm-util.la \
$(top_builddir)/src/supplicant-manager/libsupplicant-manager.la \
$(DBUS_LIBS)
if WITH_TESTS
check-local: test-supplicant-config
$(abs_builddir)/test-supplicant-config
endif
|