mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-04 00:11:05 +02:00
Port remaining bits to gdbus and remove stray dbus-glib references Drop the dbus-glib version check from configure, since nothing depends on new dbus-glib any more. Move nm-dbus-glib-types.h and nm-gvaluearray-compat.h from include/ to libnm-util/ since they are now only used by libnm-util and libnm-glib.
36 lines
900 B
Makefile
36 lines
900 B
Makefile
SUBDIRS = . tests
|
|
|
|
@GNOME_CODE_COVERAGE_RULES@
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/settings \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-core \
|
|
-I$(top_builddir)/libnm-core \
|
|
-DG_LOG_DOMAIN=\""NetworkManager-ifupdown"\" \
|
|
-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_INSIDE_DAEMON \
|
|
-DNM_VERSION_MAX_ALLOWED=NM_VERSION_NEXT_STABLE \
|
|
$(GLIB_CFLAGS) \
|
|
$(GUDEV_CFLAGS) \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\"
|
|
|
|
noinst_LTLIBRARIES = libifupdown-io.la
|
|
|
|
libifupdown_io_la_SOURCES = \
|
|
interface_parser.c \
|
|
interface_parser.h \
|
|
parser.c \
|
|
parser.h
|
|
|
|
pkglib_LTLIBRARIES = libnm-settings-plugin-ifupdown.la
|
|
|
|
libnm_settings_plugin_ifupdown_la_SOURCES = \
|
|
nm-ifupdown-connection.c \
|
|
nm-ifupdown-connection.h \
|
|
plugin.c \
|
|
plugin.h
|
|
|
|
libnm_settings_plugin_ifupdown_la_LDFLAGS = -module -avoid-version
|
|
libnm_settings_plugin_ifupdown_la_LIBADD = libifupdown-io.la
|
|
|