mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-03 01:58:00 +02:00
* system-settings/* - Rework structure and code to use GModule-loaded plugins and a plugin interface that plugins export to the system settings service git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3106 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
INCLUDES = -I${top_srcdir} \
|
|
-I${top_srcdir}/include \
|
|
-I${top_srcdir}/libnm-util \
|
|
-I${top_srcdir}/libnm-glib
|
|
|
|
sbin_PROGRAMS = nm-system-settings
|
|
|
|
nm_system_settings_SOURCES = \
|
|
dbus-settings.c \
|
|
dbus-settings.h \
|
|
main.c \
|
|
nm-system-config-interface.c \
|
|
nm-system-config-interface.h
|
|
|
|
nm_system_settings_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GTHREAD_CFLAGS) \
|
|
$(GMODULE_CFLAGS) \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DSBINDIR=\"$(sbindir)\" \
|
|
-DLIBEXECDIR=\"$(libexecdir)\" \
|
|
-DDATADIR=\"$(datadir)\" \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\" \
|
|
-DLOCALSTATEDIR=\"$(localstatedir)\" \
|
|
-DGNOMELOCALEDIR=\"$(datadir)/locale\"
|
|
|
|
nm_system_settings_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(GTHREAD_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm_glib.la
|
|
|
|
nm_system_settings_LDFLAGS = -rdynamic
|
|
|
|
dbusservicedir = $(DBUS_SYS_DIR)
|
|
dbusservice_DATA = nm-system-settings.conf
|
|
|
|
EXTRA_DIST = \
|
|
$(dbusservice_DATA)
|
|
|