From: Niels Möller Date: Tue, 1 Oct 2002 15:32:48 +0000 (+0200) Subject: * examples/Makefile.am (TS_PROGS): New variable. Run tests. X-Git-Tag: nettle_1.6_release_20021003~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5291a0bd77f31906b3a4183bb2458998f0b96506;p=thirdparty%2Fnettle.git * examples/Makefile.am (TS_PROGS): New variable. Run tests. Rev: src/nettle/examples/Makefile.am:1.6 --- diff --git a/examples/Makefile.am b/examples/Makefile.am index 25f2bc6e..22cc1ccf 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -6,3 +6,13 @@ noinst_PROGRAMS = nettle-benchmark @RSA_EXAMPLES@ LDADD = io.o ../libnettle.a nettle_benchmark_LDADD = ../libnettle.a + +TS_PROGS = rsa-sign-test rsa-verify-test + +EXTRA_DIST = io.c io.h run-tests $(TS_PROGS) + +.PHONY: run-tests +run-tests: $(TS_PROGS) + srcdir="$(srcdir)" "$(srcdir)"/run-tests $(TS_PROGS) + +check: run-tests