diff options
author | Mike Frysinger <vapier@chromium.org> | 2015-10-12 17:57:27 -0400 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2015-10-14 15:03:58 +0900 |
commit | 1e3624c5fffbd19120a017b387471d93281c5ec1 (patch) | |
tree | 80b3c978dd122e2ee0f2125f39edc7a9a5508eb2 /gettext-runtime | |
parent | afe42f6d0bbb1a8ea0134165c3b8779b2d8c94de (diff) | |
download | external_gettext-1e3624c5fffbd19120a017b387471d93281c5ec1.zip external_gettext-1e3624c5fffbd19120a017b387471d93281c5ec1.tar.gz external_gettext-1e3624c5fffbd19120a017b387471d93281c5ec1.tar.bz2 |
tests: use check_PROGRAMS
The noinst_xxx targets will be compiled all the time. For test programs,
the check_xxx targets make more sense as they'll only be built when the
user runs `make check`.
* gettext-runtime/tests/Makefile.am (noinst_PROGRAMS): Rename to ...
(check_PROGRAMS): ... this.
Diffstat (limited to 'gettext-runtime')
-rw-r--r-- | gettext-runtime/tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gettext-runtime/tests/Makefile.am b/gettext-runtime/tests/Makefile.am index 4734012..0085994 100644 --- a/gettext-runtime/tests/Makefile.am +++ b/gettext-runtime/tests/Makefile.am @@ -26,7 +26,7 @@ AM_CPPFLAGS = \ -I.. \ -I$(srcdir)/../intl -noinst_PROGRAMS = test-lock +check_PROGRAMS = test-lock test_lock_SOURCES = test-lock.c ../intl/lock.c ../intl/threadlib.c test_lock_LDADD = @LIBMULTITHREAD@ @LIBSCHED@ |