mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-01 09:08:05 +02:00
* system-settings/plugins/ifcfg/Makefile.am system-settings/plugins/ifcfg/parser.c system-settings/plugins/ifcfg/parser.h system-settings/plugins/ifcfg/plugin.c - Parse wireless connections too * system-settings/src/dbus-settings.c system-settings/src/dbus-settings.h system-settings/src/main.c - Handle connection update/removal if the plugin supports it git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3112 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
26 lines
539 B
Makefile
26 lines
539 B
Makefile
|
|
lib_LTLIBRARIES = libnm-settings-plugin-ifcfg.la
|
|
|
|
libnm_settings_plugin_ifcfg_la_SOURCES = \
|
|
shvar.c \
|
|
shvar.h \
|
|
parser.c \
|
|
parser.h \
|
|
plugin.c \
|
|
plugin.h
|
|
|
|
libnm_settings_plugin_ifcfg_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(GMODULE_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-I${top_srcdir}/system-settings/src \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\"
|
|
|
|
libnm_settings_plugin_ifcfg_la_LIBADD = \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(top_builddir)/libnm-util/libnm-util.la
|
|
|