mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 21:30:10 +01:00
fix distcheck for real
This commit is contained in:
parent
203cff4d83
commit
718debc2cd
2 changed files with 31 additions and 7 deletions
|
|
@ -6,6 +6,7 @@ SUBDIRS= \
|
|||
ppp-manager \
|
||||
backends \
|
||||
dnsmasq-manager \
|
||||
. \
|
||||
tests
|
||||
|
||||
INCLUDES = -I${top_srcdir} \
|
||||
|
|
@ -19,6 +20,32 @@ INCLUDES = -I${top_srcdir} \
|
|||
-I${top_srcdir}/libnm-util \
|
||||
-I${top_srcdir}/callouts
|
||||
|
||||
###########################################
|
||||
# DHCP test library
|
||||
###########################################
|
||||
|
||||
noinst_LTLIBRARIES = libtest-dhcp.la
|
||||
|
||||
libtest_dhcp_la_SOURCES = \
|
||||
nm-ip4-config.c \
|
||||
nm-dbus-manager.c
|
||||
|
||||
libtest_dhcp_la_CPPFLAGS = \
|
||||
$(GLIB_CFLAGS) \
|
||||
$(DBUS_CFLAGS) \
|
||||
$(LIBNL_CFLAGS)
|
||||
|
||||
libtest_dhcp_la_LIBADD = \
|
||||
$(GLIB_LIBS) \
|
||||
$(DBUS_LIBS) \
|
||||
$(LIBNL_LIBS) \
|
||||
$(top_builddir)/libnm-util/libnm-util.la
|
||||
|
||||
|
||||
###########################################
|
||||
# NetworkManager
|
||||
###########################################
|
||||
|
||||
sbin_PROGRAMS = NetworkManager
|
||||
|
||||
NetworkManager_SOURCES = \
|
||||
|
|
|
|||
|
|
@ -9,21 +9,18 @@ INCLUDES = \
|
|||
noinst_PROGRAMS = test-dhcp-options
|
||||
|
||||
test_dhcp_options_SOURCES = \
|
||||
test-dhcp-options.c \
|
||||
../nm-ip4-config.c \
|
||||
../nm-dbus-manager.c
|
||||
test-dhcp-options.c
|
||||
|
||||
test_dhcp_options_CPPFLAGS = \
|
||||
$(GLIB_CFLAGS) \
|
||||
$(DBUS_CFLAGS) \
|
||||
$(LIBNL_CFLAGS)
|
||||
$(DBUS_CFLAGS)
|
||||
|
||||
test_dhcp_options_LDADD = \
|
||||
$(GTHREAD_LIBS) \
|
||||
$(DBUS_LIBS) \
|
||||
$(LIBNL_LIBS) \
|
||||
$(top_builddir)/libnm-util/libnm-util.la \
|
||||
$(top_builddir)/src/dhcp-manager/libdhcp-manager.la
|
||||
$(top_builddir)/src/dhcp-manager/libdhcp-manager.la \
|
||||
$(top_builddir)/src/libtest-dhcp.la
|
||||
|
||||
if WITH_TESTS
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue