mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-10 16:00:32 +01:00
Initial VPN Support - supports 'vpnc' - reworks device IP configuration, backend files have changed and will need to be updated for all distributions. I will try to do what I can for them, but I cannot test them. - Move named directory to src/named-manager - Make backends directory self-contained git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@571 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
84 lines
2 KiB
Makefile
84 lines
2 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 = wireless-applet.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) \
|
|
$(GNOMEKEYRING_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 \
|
|
nmwa-vpn-password-dialog.c \
|
|
nmwa-vpn-password-dialog.h \
|
|
nmwa-vpn-connection.c \
|
|
nmwa-vpn-connection.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) \
|
|
$(GNOMEKEYRING_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)
|
|
|