mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-02 20:08:04 +02:00
* libnm_glib/ - Client library for applications using glib * configure.in various Makefiles - Split NM_CFLAGS and NM_LIBS into separate variables like DBUS_*, HAL_* and GLIB_* * src/NetworkManager.c src/NetworkManagerMain.h - (nm_schedule_status_signal_broadcast): at the earliest convenience, broadcast a status changed signal over DBUS from the main thread. Still unused anywhere for the moment. Patch from j@bootlab.org * panel_applet/NMWirelessAppletDbus.c src/NetworkManagerDbus.c - Correct INT32->UINT32 mistmatch between NM and the panel applet for the "getMode" method call git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@368 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
29 lines
514 B
Makefile
29 lines
514 B
Makefile
INCLUDES = -I${top_srcdir}
|
|
|
|
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_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
|