mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-01 05:38:04 +02:00
Bothered me for a long time; now that we've bumped the soname, we can rename the library too.
36 lines
842 B
Makefile
36 lines
842 B
Makefile
|
|
pkglib_LTLIBRARIES = libnm-settings-plugin-ifcfg-suse.la
|
|
|
|
libnm_settings_plugin_ifcfg_suse_la_SOURCES = \
|
|
nm-suse-connection.c \
|
|
nm-suse-connection.h \
|
|
shvar.c \
|
|
shvar.h \
|
|
parser.c \
|
|
parser.h \
|
|
plugin.c \
|
|
plugin.h
|
|
|
|
libnm_settings_plugin_ifcfg_suse_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(GMODULE_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
$(POLKIT_CFLAGS) \
|
|
$(GUDEV_CFLAGS) \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-I${top_srcdir}/src/system-settings \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-I$(top_srcdir)/libnm-glib \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\"
|
|
|
|
libnm_settings_plugin_ifcfg_suse_la_LDFLAGS = -module -avoid-version
|
|
libnm_settings_plugin_ifcfg_suse_la_LIBADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm-glib.la \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(POLKIT_LIBS) \
|
|
$(GUDEV_LIBS) \
|
|
$(GIO_LIBS)
|
|
|