mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-20 04:20:29 +01:00
0.7 requires dbus 1.1 or greater (for system bus activation), so make that explicit, and remove compat code for D-Bus 0.6 and earlier. Consolidate the various glib pkgconfig checks into one, since most anything will require gthread, glib, and gobject anyway. Fixup the docs makefile to be more automake-compatible and let 'make clean' actually work correctly when docs are built.
20 lines
358 B
Makefile
20 lines
358 B
Makefile
INCLUDES = \
|
|
-I$(top_srcdir)/system-settings/src \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-I$(top_srcdir)/libnm-glib
|
|
|
|
noinst_LTLIBRARIES = libkeyfile-io.la
|
|
|
|
libkeyfile_io_la_SOURCES = \
|
|
reader.h \
|
|
reader.c \
|
|
writer.h \
|
|
writer.c
|
|
|
|
libkeyfile_io_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(DBUS_CFLAGS)
|
|
|
|
libkeyfile_io_la_LIBADD = $(GLIB_LIBS)
|
|
|