summaryrefslogtreecommitdiff
path: root/libnm/tests
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2015-12-22 12:18:22 +0100
committerThomas Haller <thaller@redhat.com>2015-12-24 11:42:37 +0100
commitdb80ec05abdc09541896d80bdf71ccec58670109 (patch)
tree7ba6a34d1b2448e06146e11d9417a7b79f5bd5fb /libnm/tests
parentbc06dd9332f557fb1848b3c50a102e0d35ad9205 (diff)
downloadNetworkManager-db80ec05abdc09541896d80bdf71ccec58670109.tar.gz
build: rename directory "include" to "shared"
Up to now, the "include" directory contained (only) header files that were used project-wide by libs, core, clients, et al. Since the directory now also contains a non-header file, the "include" name is misleading. Instead of adding yet another directory that is project-wide, with non-header-only content, rename the "include" directory to "shared".
Diffstat (limited to 'libnm/tests')
-rw-r--r--libnm/tests/Makefile.am16
1 files changed, 8 insertions, 8 deletions
diff --git a/libnm/tests/Makefile.am b/libnm/tests/Makefile.am
index 99a4b8a66e..ddcf50be80 100644
--- a/libnm/tests/Makefile.am
+++ b/libnm/tests/Makefile.am
@@ -1,8 +1,8 @@
if ENABLE_TESTS
AM_CPPFLAGS = \
- -I$(top_srcdir)/include \
- -I$(top_builddir)/include \
+ -I$(top_srcdir)/shared \
+ -I$(top_builddir)/shared \
-I$(top_srcdir)/libnm \
-I$(top_builddir)/libnm \
-I$(top_srcdir)/libnm-core \
@@ -26,18 +26,18 @@ endif
TESTS = test-nm-client test-remote-settings-client test-secret-agent
test_nm_client_SOURCES = \
- $(top_builddir)/include/nm-test-utils-impl.c \
- $(top_builddir)/include/nm-test-libnm-utils.h \
+ $(top_builddir)/shared/nm-test-utils-impl.c \
+ $(top_builddir)/shared/nm-test-libnm-utils.h \
test-nm-client.c
test_remote_settings_client_SOURCES = \
- $(top_builddir)/include/nm-test-utils-impl.c \
- $(top_builddir)/include/nm-test-libnm-utils.h \
+ $(top_builddir)/shared/nm-test-utils-impl.c \
+ $(top_builddir)/shared/nm-test-libnm-utils.h \
test-remote-settings-client.c
test_secret_agent_SOURCES = \
- $(top_builddir)/include/nm-test-utils-impl.c \
- $(top_builddir)/include/nm-test-libnm-utils.h \
+ $(top_builddir)/shared/nm-test-utils-impl.c \
+ $(top_builddir)/shared/nm-test-libnm-utils.h \
test-secret-agent.c
endif