From: Niels Möller Date: Tue, 17 Apr 2001 20:08:23 +0000 (+0200) Subject: * testsuite/Makefile.am (CFLAGS): Disable optimization. Add X-Git-Tag: release_nettle_0.2.20010617~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a37de2ae06c373f445246f22758381fe1c1ea853;p=thirdparty%2Fnettle.git * testsuite/Makefile.am (CFLAGS): Disable optimization. Add $(top_srcdir) to the include path. (EXTRA_DIST): Added testutils.h, testutils.c and run-tests. (run-tests): Fixed path to run-tests. Rev: src/nettle/testsuite/Makefile.am:1.2 --- diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am index d512a932..c818c46f 100644 --- a/testsuite/Makefile.am +++ b/testsuite/Makefile.am @@ -1,10 +1,12 @@ +CFLAGS = -I$(top_srcdir) @CFLAGS@ -O0 +CPPFLAGS = @CPPFLAGS@ TS_PROGS = aes-test arcfour-test md5-test noinst_PROGRAMS = $(TS_PROGS) LDADD = testutils.o ../libnettle.a -EXTRA_DIST = macros.h $(SOURCES:.c=.m4) +EXTRA_DIST = $(SOURCES:.c=.m4) testutils.c testutils.h run-tests M4FLAGS = -P -s %.c: macros.m4 %.m4 @@ -16,5 +18,5 @@ M4FLAGS = -P -s check: run-tests run-tests: $(TS_PROGS) - ./run-tests $^ + $(srcdir)/run-tests $^