mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-17 21:38:09 +02:00
* Merge the applet and the info-daemon, and move the converged
applet under gnome/applet
* Move libnm_glib to gnome/libnm_glib
* Convert most dbus calls between the applet, info-daemon, and NM
into async calls
* Fix a few things valgrind noticed
* Make NM broadcast state more reliably
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@586 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
31 lines
598 B
Makefile
31 lines
598 B
Makefile
INCLUDES = -I${top_srcdir} -I${top_srcdir}/utils
|
|
|
|
lib_LTLIBRARIES=libnm_glib.la
|
|
|
|
libnm_glib_la_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GTHREAD_CFLAGS) \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE
|
|
|
|
libnm_glib_la_SOURCES= \
|
|
libnm_glib.c \
|
|
libnm_glib.h
|
|
|
|
libnm_glib_la_LDFLAGS= \
|
|
$(DBUS_LIBS) \
|
|
$(GTHREAD_LIBS)
|
|
|
|
libnm_glib_la_LIBADD = $(top_builddir)/utils/libnmutils.la
|
|
|
|
libnm_glib_includedir=$(includedir)/NetworkManager
|
|
|
|
libnm_glib_include_HEADERS = libnm_glib.h
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libnm_glib.pc
|
|
|
|
DISTCLEANFILES = \
|
|
libnm_glib.pc
|
|
|
|
EXTRA_DIST = \
|
|
libnm_glib.pc.in
|