]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
* examples/Makefile.am (TS_PROGS): New variable. Run tests.
authorNiels Möller <nisse@lysator.liu.se>
Tue, 1 Oct 2002 15:32:48 +0000 (17:32 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Tue, 1 Oct 2002 15:32:48 +0000 (17:32 +0200)
Rev: src/nettle/examples/Makefile.am:1.6

examples/Makefile.am

index 25f2bc6ec593a1e7ff777c94a15ac94ce20c1149..22cc1ccf5eb8a05f314f11bebfb5f8805c1dd231 100644 (file)
@@ -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