mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-16 02:28:06 +02:00
Bothered me for a long time; now that we've bumped the soname, we can rename the library too.
40 lines
843 B
Makefile
40 lines
843 B
Makefile
SUBDIRS=network-scripts
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-I$(top_srcdir)/libnm-glib \
|
|
-I$(top_srcdir)/system-settings/plugins/ifcfg-rh
|
|
|
|
noinst_PROGRAMS = test-ifcfg-rh
|
|
|
|
test_ifcfg_rh_SOURCES = \
|
|
test-ifcfg-rh.c
|
|
|
|
test_ifcfg_rh_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DTEST_IFCFG_DIR=\"$(abs_srcdir)\" \
|
|
-DTEST_SCRATCH_DIR=\"$(abs_builddir)/\"
|
|
|
|
test_ifcfg_rh_LDADD = \
|
|
$(top_builddir)/libnm-glib/libnm-glib.la \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/system-settings/plugins/ifcfg-rh/libifcfg-rh-io.la \
|
|
$(DBUS_LIBS)
|
|
|
|
if WITH_TESTS
|
|
|
|
check-local: test-ifcfg-rh
|
|
$(abs_builddir)/test-ifcfg-rh
|
|
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
iscsiadm-test-dhcp \
|
|
iscsiadm-test-static \
|
|
iscsiadm-test-bad-ipaddr \
|
|
iscsiadm-test-bad-gateway \
|
|
iscsiadm-test-bad-dns1 \
|
|
iscsiadm-test-bad-dns2
|
|
|