mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-29 18:30:11 +01:00
Patch from Michael Biebl <biebl@debian.org> * system-settings/plugins/ifcfg/Makefile.am system-settings/src/main.c system-settings/src/Makefile.am - Put system settings plugins in NM plugins dir * src/ppp-manager/Makefile.am src/ppp-manager/nm-ppp-manager.c - Move pppd plugin to NM plugins dir git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3131 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
44 lines
1 KiB
Makefile
44 lines
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\" \
|
|
-DPLUGINDIR=\"$(pkglibdir)\"
|
|
|
|
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)
|
|
|