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: Ieb4ddc5799819c24ed357218c7b0197bcb6b5c91changes/42/31842/1
parent
0e13bfd18c
commit
fed58d97b8
|
@ -12,6 +12,8 @@ AM_CXXFLAGS = \
|
|||
$(LIBOSMOVTY_CFLAGS) \
|
||||
$(NULL)
|
||||
|
||||
AM_LDFLAGS = -no-install
|
||||
|
||||
LDADD = \
|
||||
$(COMMON_LA) \
|
||||
$(LIBOSMOCORE_LIBS) \
|
||||
|
|
|
@ -7,6 +7,7 @@ AM_CPPFLAGS = \
|
|||
$(NULL)
|
||||
|
||||
AM_CFLAGS = -Wall -g
|
||||
AM_LDFLAGS = -no-install
|
||||
|
||||
EXTRA_DIST = convolve_test.ok convolve_test_golden.h
|
||||
|
||||
|
|
Loading…
Reference in New Issue