]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
* testsuite/Makefile.am (CFLAGS): Disable optimization. Add
authorNiels Möller <nisse@lysator.liu.se>
Tue, 17 Apr 2001 20:08:23 +0000 (22:08 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Tue, 17 Apr 2001 20:08:23 +0000 (22:08 +0200)
$(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

testsuite/Makefile.am

index d512a932a75d39bd465c66a5a50f88e997c4d709..c818c46f9eef0c04155200ffb858d353ed53e297 100644 (file)
@@ -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 $^