mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-02 04:58:00 +02:00
* system-settings/plugins/ifcfg-rh - Rename 'ifcfg-fedora' to 'ifcfg-rh'; it's not just used on Fedora * system-settings/src/main.c - (load_plugins): transparently handle ifcfg-fedora as ifcfg-rh git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4337 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
42 lines
1,015 B
Makefile
42 lines
1,015 B
Makefile
|
|
pkglib_LTLIBRARIES = libnm-settings-plugin-ifcfg-rh.la
|
|
|
|
libnm_settings_plugin_ifcfg_rh_la_SOURCES = \
|
|
shvar.c \
|
|
shvar.h \
|
|
plugin.c \
|
|
plugin.h \
|
|
nm-ifcfg-connection.c \
|
|
nm-ifcfg-connection.h \
|
|
reader.c \
|
|
reader.h \
|
|
common.h
|
|
|
|
libnm_settings_plugin_ifcfg_rh_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-glib \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-I$(top_builddir)/marshallers \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\"
|
|
|
|
libnm_settings_plugin_ifcfg_rh_la_LDFLAGS = -module -avoid-version
|
|
libnm_settings_plugin_ifcfg_rh_la_LIBADD = \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm_glib.la \
|
|
$(top_builddir)/marshallers/libmarshallers.la
|
|
|
|
if NO_GIO
|
|
libnm_settings_plugin_ifcfg_rh_la_LIBADD += \
|
|
$(top_builddir)/gfilemonitor/libgfilemonitor.la
|
|
else
|
|
libnm_settings_plugin_ifcfg_rh_la_LIBADD += \
|
|
$(GIO_LIBS)
|
|
endif
|
|
|