mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-04 05:10:17 +01:00
29 lines
752 B
Makefile
29 lines
752 B
Makefile
|
|
INCLUDES = \
|
|
-I${top_srcdir}/src
|
|
|
|
pkglib_LTLIBRARIES = libnm-settings-plugin-ifupdown.la
|
|
|
|
libnm_settings_plugin_ifupdown_la_SOURCES = \
|
|
interface_parser.c interface_parser.h \
|
|
nm-ifupdown-connection.c nm-ifupdown-connection.h \
|
|
parser.c parser.h \
|
|
plugin.c plugin.h
|
|
|
|
libnm_settings_plugin_ifupdown_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 \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\"
|
|
|
|
libnm_settings_plugin_ifupdown_la_LDFLAGS = -module -avoid-version
|
|
libnm_settings_plugin_ifupdown_la_LIBADD = \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(top_builddir)/libnm-util/libnm-util.la
|
|
|