mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-10 19:50:22 +01:00
Clean up handling of "special" keys in keyfiles, ie ones that need more processing than the basic GKeyFile API supports. Add MAC address reading (writing support to come). Additionally, add some test bits for the keyfile plugin that get run on 'make check'.
32 lines
683 B
Makefile
32 lines
683 B
Makefile
SUBDIRS=keyfiles
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-I$(top_srcdir)/libnm-glib \
|
|
-I$(top_srcdir)/system-settings/plugins/keyfile/io
|
|
|
|
noinst_PROGRAMS = test-keyfile
|
|
|
|
test_keyfile_SOURCES = \
|
|
test-keyfile.c
|
|
|
|
test_keyfile_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DTEST_KEYFILES_DIR=\"$(abs_srcdir)/keyfiles\" \
|
|
-DTEST_SCRATCH_DIR=\"$(abs_builddir)/keyfiles\"
|
|
|
|
test_keyfile_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(top_builddir)/libnm-glib/libnm_glib.la \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/system-settings/plugins/keyfile/io/libkeyfile-io.la
|
|
|
|
if WITH_TESTS
|
|
|
|
check-local: test-keyfile
|
|
$(abs_builddir)/test-keyfile
|
|
|
|
endif
|
|
|