2005-12-09 23:25:22 +00:00
|
|
|
INCLUDES = -I${top_srcdir} -I${top_srcdir}/include
|
|
|
|
|
|
|
|
|
|
lib_LTLIBRARIES=libnm-util.la
|
|
|
|
|
|
2005-12-12 22:18:55 +00:00
|
|
|
libnm_util_la_CPPFLAGS = \
|
|
|
|
|
$(GLIB_CFLAGS) \
|
|
|
|
|
$(DBUS_CFLAGS) \
|
|
|
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
|
|
|
-DG_DISABLE_DEPRECATED \
|
|
|
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
|
|
|
-DGNOME_DISABLE_DEPRECATED \
|
2006-05-24 Robert Love <rml@novell.com>
* gnome/applet/Makefile.am, gnome/vpn-properties/Makefile.am,
libnm-util/Makefile.am, src/Makefile.am,
vpn-daemons/openvpn/auth-dialog/Makefile.am,
vpn-daemons/openvpn/properties/Makefile.am,
vpn-daemons/pptp/auth-dialog/Makefile.am,
vpn-daemons/pptp/properties/Makefile.am,
vpn-daemons/vpnc/auth-dialog/Makefile.am,
vpn-daemons/vpnc/properties/Makefile.am: Do not override what the
user passed for --datadir, if anything, when setting the GNOME locale
directory. It should be a function of the specified datadir and not
the prefix.
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1759 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-05-24 15:08:22 +00:00
|
|
|
-DGNOMELOCALEDIR=\"$(datadir)/locale\"
|
2005-12-09 23:25:22 +00:00
|
|
|
|
|
|
|
|
if WITH_GCRYPT
|
|
|
|
|
libnm_util_la_CPPFLAGS += $(LIBGCRYPT_CFLAGS)
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
libnm_util_la_SOURCES= \
|
|
|
|
|
cipher.c \
|
|
|
|
|
cipher.h \
|
2005-12-12 16:00:46 +00:00
|
|
|
cipher-private.h \
|
2005-12-09 23:25:22 +00:00
|
|
|
cipher-wep-hex.c \
|
|
|
|
|
cipher-wep-hex.h \
|
|
|
|
|
cipher-wep-passphrase.c \
|
|
|
|
|
cipher-wep-passphrase.h \
|
|
|
|
|
cipher-wep-ascii.c \
|
|
|
|
|
cipher-wep-ascii.h \
|
|
|
|
|
cipher-wpa-psk-hex.c \
|
|
|
|
|
cipher-wpa-psk-hex.h \
|
|
|
|
|
cipher-wpa-psk-passphrase.c \
|
|
|
|
|
cipher-wpa-psk-passphrase.h \
|
2005-12-12 22:18:55 +00:00
|
|
|
dbus-helpers.c \
|
|
|
|
|
dbus-helpers.h \
|
2005-12-09 23:25:22 +00:00
|
|
|
sha1.c \
|
2005-12-17 21:10:37 +00:00
|
|
|
sha1.h \
|
|
|
|
|
dbus-method-dispatcher.c \
|
2006-06-16 16:36:57 +00:00
|
|
|
dbus-method-dispatcher.h \
|
|
|
|
|
dbus-dict-helpers.c \
|
|
|
|
|
dbus-dict-helpers.h
|
2005-12-09 23:25:22 +00:00
|
|
|
|
|
|
|
|
if !WITH_GCRYPT
|
|
|
|
|
libnm_util_la_SOURCES += gnome-keyring-md5.c gnome-keyring-md5.h
|
|
|
|
|
endif
|
|
|
|
|
|
2005-12-12 22:18:55 +00:00
|
|
|
libnm_util_la_LDFLAGS= $(GLIB_LIBS) $(DBUS_LIBS)
|
2005-12-09 23:25:22 +00:00
|
|
|
|
|
|
|
|
if WITH_GCRYPT
|
|
|
|
|
libnm_util_la_LDFLAGS += $(LIBGCRYPT_LIBS)
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
libnm_util_includedir=$(includedir)/NetworkManager
|
|
|
|
|
|
2005-12-10 19:33:26 +00:00
|
|
|
libnm_util_include_HEADERS = \
|
|
|
|
|
cipher.h \
|
|
|
|
|
cipher-wep-hex.h \
|
|
|
|
|
cipher-wep-passphrase.h \
|
|
|
|
|
cipher-wep-ascii.h \
|
|
|
|
|
cipher-wpa-psk-hex.h \
|
2005-12-12 22:18:55 +00:00
|
|
|
cipher-wpa-psk-passphrase.h \
|
2005-12-17 21:10:37 +00:00
|
|
|
dbus-helpers.h \
|
|
|
|
|
dbus-method-dispatcher.h
|
2005-12-09 23:25:22 +00:00
|
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
|
pkgconfig_DATA = libnm-util.pc
|
|
|
|
|
|
|
|
|
|
DISTCLEANFILES = libnm-util.pc
|
|
|
|
|
|
|
|
|
|
EXTRA_DIST = libnm-util.pc.in
|