fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-trx/+/31842 )
Change subject: tests: use -no-install libtool flag to avoid ./lt-* scripts
......................................................................
tests: use -no-install libtool flag to avoid ./lt-* scripts
This option should be used for any executables which are used only
for testing, or for generating other files and are consequently never
installed. By specifying this option, we are telling Libtool that
the executable it links will only ever be executed from where it is
built in the build tree. Libtool is usually able to considerably
speed up the link process for such executables.
Change-Id: Ieb4ddc5799819c24ed357218c7b0197bcb6b5c91
---
M tests/CommonLibs/Makefile.am
M tests/Transceiver52M/Makefile.am
2 files changed, 19 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/42/31842/1
diff --git a/tests/CommonLibs/Makefile.am b/tests/CommonLibs/Makefile.am
index 1a5b922..cfdbc58 100644
--- a/tests/CommonLibs/Makefile.am
+++ b/tests/CommonLibs/Makefile.am
@@ -12,6 +12,8 @@
$(LIBOSMOVTY_CFLAGS) \
$(NULL)
+AM_LDFLAGS = -no-install
+
LDADD = \
$(COMMON_LA) \
$(LIBOSMOCORE_LIBS) \
diff --git a/tests/Transceiver52M/Makefile.am b/tests/Transceiver52M/Makefile.am
index 2077c95..a5b91f6 100644
--- a/tests/Transceiver52M/Makefile.am
+++ b/tests/Transceiver52M/Makefile.am
@@ -7,6 +7,7 @@
$(NULL)
AM_CFLAGS = -Wall -g
+AM_LDFLAGS = -no-install
EXTRA_DIST = convolve_test.ok convolve_test_golden.h
--
To view, visit
https://gerrit.osmocom.org/c/osmo-trx/+/31842
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Ieb4ddc5799819c24ed357218c7b0197bcb6b5c91
Gerrit-Change-Number: 31842
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange