mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-06 17:50:16 +01:00
* panel-applet/essid.glade panel-applet/NMWirelessAppletOtherNetworksDialog.c - Correct spelling of "adaptor"->"adapter" 2005-02-18 William Jon McCann <mccann@jhu.edu> * panel-applet/NMWirelessApplet.c: Use GTK_CHECK_VERSION() macro. (nmwa_about_cb): Use standard copyright string. Update comment text to reflect that it is a notification area applet. Remove leading newline in authors list. (nmwa_menu_show_cb, nmwa_setup_widgets): Populate menu on show instead of on parent menu item activation. Fixes #167550. 2005-02-18 William Jon McCann <mccann@jhu.edu> * panel-applet/essid.glade: Capitalize items as per HIG. Fixes #167632 git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@458 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
75 lines
1.7 KiB
Makefile
75 lines
1.7 KiB
Makefile
SUBDIRS=icons
|
|
|
|
NULL=
|
|
NOTIFICATION_ICON_SOURCE=@NOTIFICATION_ICON_SRC@
|
|
|
|
INCLUDES = -I${top_srcdir}
|
|
|
|
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
|
|
|
|
CLEANFILES = $(server_DATA) *.bak *.gladep
|
|
|
|
EXTRA_DIST = \
|
|
$(glade_DATA) \
|
|
$(NULL)
|
|
|