mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-06 03:30:31 +01:00
66 lines
1.8 KiB
Makefile
66 lines
1.8 KiB
Makefile
INCLUDES = -I${top_srcdir} \
|
|
-I${top_srcdir}/include \
|
|
-I${top_srcdir}/libnm-util \
|
|
-I${top_srcdir}/libnm-glib \
|
|
-I${top_srcdir}/src/logging \
|
|
-I${top_srcdir}/src \
|
|
-I${top_builddir}/marshallers
|
|
|
|
noinst_LTLIBRARIES = libsettings.la
|
|
|
|
BUILT_SOURCES = \
|
|
nm-settings-glue.h \
|
|
nm-sysconfig-connection-glue.h
|
|
|
|
libsettings_la_SOURCES = \
|
|
nm-settings.c \
|
|
nm-settings.h \
|
|
nm-inotify-helper.c \
|
|
nm-inotify-helper.h \
|
|
nm-polkit-helpers.h \
|
|
nm-settings-error.c \
|
|
nm-settings-error.h \
|
|
nm-system-config-interface.c \
|
|
nm-system-config-interface.h \
|
|
nm-sysconfig-connection.c \
|
|
nm-sysconfig-connection.h \
|
|
nm-default-wired-connection.c \
|
|
nm-default-wired-connection.h
|
|
|
|
libsettings_la_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GLIB_CFLAGS) \
|
|
$(GMODULE_CFLAGS) \
|
|
$(POLKIT_CFLAGS) \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DSBINDIR=\"$(sbindir)\" \
|
|
-DLIBEXECDIR=\"$(libexecdir)\" \
|
|
-DDATADIR=\"$(datadir)\" \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\" \
|
|
-DLOCALSTATEDIR=\"$(localstatedir)\" \
|
|
-DGNOMELOCALEDIR=\"$(datadir)/locale\" \
|
|
-DPLUGINDIR=\"$(pkglibdir)\"
|
|
|
|
libsettings_la_LIBADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm-glib.la \
|
|
$(top_builddir)/marshallers/libmarshallers.la \
|
|
$(top_builddir)/src/logging/libnm-logging.la \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(POLKIT_LIBS)
|
|
|
|
libsettings_la_LDFLAGS = -rdynamic
|
|
|
|
|
|
nm-settings-glue.h: $(top_srcdir)/introspection/nm-settings.xml
|
|
$(AM_V_GEN) dbus-binding-tool --prefix=nm_settings --mode=glib-server --output=$@ $<
|
|
|
|
nm-sysconfig-connection-glue.h: $(top_srcdir)/introspection/nm-sysconfig-connection.xml
|
|
$(AM_V_GEN) dbus-binding-tool --prefix=nm_sysconfig_connection --mode=glib-server --output=$@ $<
|
|
|
|
CLEANFILES = \
|
|
$(BUILT_SOURCES)
|
|
|