From: Mike Frysinger Date: Mon, 12 Oct 2015 21:57:27 +0000 (-0400) Subject: tests: use check_PROGRAMS X-Git-Tag: v0.19.7~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e3624c5fffbd19120a017b387471d93281c5ec1;p=thirdparty%2Fgettext.git 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. --- diff --git a/gettext-runtime/tests/Makefile.am b/gettext-runtime/tests/Makefile.am index 47340128d..00859949a 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@