mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-03 20:38:06 +02:00
Second (unfinished, unworking) cut at porting to dbus 0.30 api. * dispatcher-daemon/NetworkManagerDispatcher.c * info-daemon/NetworkManagerInfoDbus.c: * panel-applet/NMWirelessAppletDbus.c: * src/NetworkManagerDbusUtils.c: * src/NetworkManagerDbusUtils.h: * src/nm-dbus-device.c: * src/nm-dbus-nm.c: * test/nmtest.c: support dbus "object path" type * configure.in: * Makefile.am: * info-daemon/Makefile.am: * libnm_glib/Makefile.am: * panel-applet/Makefile.am: * dispatcher-daemon/Makefile.am * src/Makefile.am: * test/Makefile.am: * utils/Makefile.am: * utils/nm-utils.c: * utils/nm-utils.h: new utils static lib git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@494 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
78 lines
1.8 KiB
Makefile
78 lines
1.8 KiB
Makefile
SUBDIRS=icons
|
|
|
|
NULL=
|
|
NOTIFICATION_ICON_SOURCE=@NOTIFICATION_ICON_SRC@
|
|
|
|
INCLUDES = -I${top_srcdir} -I${top_srcdir}/utils
|
|
|
|
noinst_LTLIBRARIES = libnm_notification_applet.la
|
|
|
|
gladedir = $(datadir)/NetworkManagerNotification
|
|
glade_DATA = essid.glade
|
|
|
|
libnm_notification_applet_la_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GTHREAD_CFLAGS) \
|
|
$(HAL_CFLAGS) \
|
|
$(DBUS_GLIB_CFLAGS) \
|
|
$(GLADE_CFLAGS) \
|
|
$(GTK_CFLAGS) \
|
|
$(GCONF_CFLAGS) \
|
|
$(LIBGNOMEUI_CFLAGS) \
|
|
$(PANEL_APPLET_CFLAGS) \
|
|
-DICONDIR=\""$(datadir)/pixmaps"\" \
|
|
-DGLADEDIR=\""$(gladedir)"\" \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
-DGNOME_DISABLE_DEPRECATED \
|
|
-DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
|
|
-DVERSION=\"$(VERSION)\" \
|
|
$(NULL)
|
|
|
|
libnm_notification_applet_la_SOURCES = \
|
|
NMWirelessApplet.c \
|
|
NMWirelessApplet.h \
|
|
NMWirelessAppletDbus.c \
|
|
NMWirelessAppletDbus.h \
|
|
NMWirelessAppletOtherNetworkDialog.c \
|
|
NMWirelessAppletOtherNetworkDialog.h \
|
|
menu-info.c \
|
|
menu-info.h \
|
|
gtkcellview.c \
|
|
gtkcellview.h \
|
|
gtkcellrendererprogress.c \
|
|
gtkcellrendererprogress.h \
|
|
$(NULL)
|
|
|
|
libnm_notification_applet_la_SOURCES += \
|
|
eggtrayicon.c \
|
|
eggtrayicon.h
|
|
|
|
libnm_notification_applet_la_LIBADD = \
|
|
$(DBUS_LIBS) \
|
|
$(HAL_LIBS) \
|
|
$(GTHREAD_LIBS) \
|
|
$(GLADE_LIBS) \
|
|
$(DBUS_GLIB_LIBS) \
|
|
$(PANEL_APPLET_LIBS) \
|
|
$(GTK_LIBS) \
|
|
$(GCONF_LIBS) \
|
|
$(LIBGNOMEUI_LIBS) \
|
|
$(NULL)
|
|
|
|
libexec_PROGRAMS = NetworkManagerNotification
|
|
|
|
NetworkManagerNotification_CFLAGS = $(libnm_notification_applet_la_CPPFLAGS)
|
|
NetworkManagerNotification_SOURCES = main.c
|
|
NetworkManagerNotification_LDADD = \
|
|
./libnm_notification_applet.la \
|
|
$(top_builddir)/utils/libnmutils.la
|
|
|
|
|
|
CLEANFILES = $(server_DATA) *.bak *.gladep
|
|
|
|
EXTRA_DIST = \
|
|
$(glade_DATA) \
|
|
$(NULL)
|
|
|