mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-04-18 12:00:36 +02:00
This patch has been used in OpenEmbedded [1] since commit b167a9a9 [2][3]. [1] http://www.openembedded.org/ [2] http://cgit.openembedded.org/cgit.cgi/openembedded/commit/recipes/networkmanager/networkmanager/0002-respect-libnl-flags-also-in-dns-manager-vpn-manager-.patch?id=b167a9a9e55a7a493a7ee565cec9c7dd463362ff [3] http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=b167a9a9e55a7a493a7ee565cec9c7dd463362ff Signed-off-by: Philip Balister <philip@balister.org>
32 lines
630 B
Makefile
32 lines
630 B
Makefile
INCLUDES = \
|
|
-I${top_srcdir}/src/logging \
|
|
-I${top_srcdir}/libnm-util \
|
|
-I${top_srcdir}/src \
|
|
-I${top_srcdir}/include
|
|
|
|
noinst_LTLIBRARIES = libdns-manager.la
|
|
|
|
libdns_manager_la_SOURCES = \
|
|
nm-dns-manager.h \
|
|
nm-dns-manager.c \
|
|
nm-dns-plugin.h \
|
|
nm-dns-plugin.c \
|
|
nm-dns-dnsmasq.h \
|
|
nm-dns-dnsmasq.c \
|
|
nm-dns-bind.h \
|
|
nm-dns-bind.c \
|
|
nm-dns-utils.h \
|
|
nm-dns-utils.c
|
|
|
|
libdns_manager_la_CPPFLAGS = \
|
|
$(LIBNL_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
$(GLIB_CFLAGS) \
|
|
-DLOCALSTATEDIR=\"$(localstatedir)\"
|
|
|
|
libdns_manager_la_LIBADD = \
|
|
$(top_builddir)/src/logging/libnm-logging.la \
|
|
$(LIBNL_LIBS) \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|