mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-01 11:50:18 +01:00
* gnome/applet/* - More applet cleanups - Use the dbus-method-dispatcher * libnm-util/dbus-method-dispatcher.[ch] - Generalize the implementation from NM in NetworkManagerUtils.c git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1210 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
68 lines
1.5 KiB
Makefile
68 lines
1.5 KiB
Makefile
INCLUDES = -I${top_srcdir} -I${top_srcdir}/include
|
|
|
|
lib_LTLIBRARIES=libnm-util.la
|
|
|
|
libnm_util_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
-DGNOME_DISABLE_DEPRECATED \
|
|
-DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\"
|
|
|
|
if WITH_GCRYPT
|
|
libnm_util_la_CPPFLAGS += $(LIBGCRYPT_CFLAGS)
|
|
endif
|
|
|
|
libnm_util_la_SOURCES= \
|
|
cipher.c \
|
|
cipher.h \
|
|
cipher-private.h \
|
|
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 \
|
|
gnome-keyring-md5.c \
|
|
gnome-keyring-md5.h \
|
|
dbus-helpers.c \
|
|
dbus-helpers.h \
|
|
sha1.c \
|
|
sha1.h \
|
|
dbus-method-dispatcher.c \
|
|
dbus-method-dispatcher.h
|
|
|
|
if !WITH_GCRYPT
|
|
libnm_util_la_SOURCES += gnome-keyring-md5.c gnome-keyring-md5.h
|
|
endif
|
|
|
|
libnm_util_la_LDFLAGS= $(GLIB_LIBS) $(DBUS_LIBS)
|
|
|
|
if WITH_GCRYPT
|
|
libnm_util_la_LDFLAGS += $(LIBGCRYPT_LIBS)
|
|
endif
|
|
|
|
libnm_util_includedir=$(includedir)/NetworkManager
|
|
|
|
libnm_util_include_HEADERS = \
|
|
cipher.h \
|
|
cipher-wep-hex.h \
|
|
cipher-wep-passphrase.h \
|
|
cipher-wep-ascii.h \
|
|
cipher-wpa-psk-hex.h \
|
|
cipher-wpa-psk-passphrase.h \
|
|
dbus-helpers.h \
|
|
dbus-method-dispatcher.h
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libnm-util.pc
|
|
|
|
DISTCLEANFILES = libnm-util.pc
|
|
|
|
EXTRA_DIST = libnm-util.pc.in
|