mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-07 16:00:21 +01:00
The only thing that doesn't work yet is the system-settings service's "auto eth" connections for ethernet devices that don't have an existing connection. Might also have issues with unmanaged devices that can't provide a MAC address until they are brought up, but we'll see.
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
SUBDIRS=io tests
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/src/system-settings \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-I$(top_srcdir)/libnm-glib \
|
|
-I$(top_srcdir)/system-settings/plugins/keyfile/io
|
|
|
|
pkglib_LTLIBRARIES = libnm-settings-plugin-keyfile.la
|
|
|
|
libnm_settings_plugin_keyfile_la_SOURCES = \
|
|
nm-keyfile-connection.c \
|
|
nm-keyfile-connection.h \
|
|
plugin.c \
|
|
plugin.h
|
|
|
|
keyfiledir=$(sysconfdir)/NetworkManager/system-connections
|
|
|
|
libnm_settings_plugin_keyfile_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(GMODULE_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\" \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DKEYFILE_DIR=\""$(keyfiledir)"\"
|
|
|
|
libnm_settings_plugin_keyfile_la_LDFLAGS = -module -avoid-version
|
|
libnm_settings_plugin_keyfile_la_LIBADD = \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(DBUS_LIBS) \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm_glib.la \
|
|
$(top_builddir)/system-settings/plugins/keyfile/io/libkeyfile-io.la
|
|
|
|
if NO_GIO
|
|
libnm_settings_plugin_keyfile_la_LIBADD += \
|
|
$(top_builddir)/gfilemonitor/libgfilemonitor.la
|
|
else
|
|
libnm_settings_plugin_keyfile_la_LIBADD += \
|
|
$(GIO_LIBS)
|
|
endif
|
|
|
|
install-data-hook:
|
|
$(mkinstalldirs) -m 0755 $(DESTDIR)$(keyfiledir)
|
|
|