From: Niels Möller Date: Sun, 7 Oct 2001 18:54:29 +0000 (+0200) Subject: * testsuite/Makefile.am (CFLAGS): Added sha256-test. X-Git-Tag: nettle_1.5_release_20020131~166 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa71cbc450201dae6bbb164cb97696953bc5dce5;p=thirdparty%2Fnettle.git * testsuite/Makefile.am (CFLAGS): Added sha256-test. Rev: src/nettle/Makefile.am:1.16 Rev: src/nettle/testsuite/Makefile.am:1.11 --- diff --git a/Makefile.am b/Makefile.am index 5927cb1e..046cccf0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,13 +1,13 @@ SUBDIRS = . testsuite -noinst_PROGRAMS = desdata +noinst_PROGRAMS = desdata shadata libnettleincludedir = $(includedir)/nettle lib_LIBRARIES = libnettle.a libnettleinclude_HEADERS = aes.h arcfour.h blowfish.h cast128.h des.h des-compat.h \ serpent.h twofish.h \ - md5.h md5-compat.h sha1.h \ + md5.h md5-compat.h sha.h \ cbc.h libnettle_a_SOURCES = aes.c aes.h arcfour.c arcfour.h \ @@ -17,12 +17,14 @@ libnettle_a_SOURCES = aes.c aes.h arcfour.c arcfour.h \ des.c des.h desinfo.h desCode.h \ des3.c des-compat.c des-compat.h \ md5.c md5.h md5-compat.c md5-compat.h \ - sha1.c sha1.h \ + sha.h sha1.c sha256.c \ serpent.c serpent.h serpent_sboxes.h \ twofish.c twofish.h libnettle_a_LIBADD = @LIBOBJS@ +shadata_LDADD = -lm + info_TEXINFOS = nettle.texinfo all-local: nettle.html diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am index 7f1da5e9..f01c8996 100644 --- a/testsuite/Makefile.am +++ b/testsuite/Makefile.am @@ -3,13 +3,13 @@ CPPFLAGS = @CPPFLAGS@ TS_PROGS = aes-test arcfour-test blowfish-test cast128-test \ des-test des3-test des-compat-test \ - md5-test md5-compat-test sha1-test \ + md5-test md5-compat-test sha1-test sha256-test \ serpent-test twofish-test \ cbc-test M4_FILES = aes-test.m4 arcfour-test.m4 blowfish-test.m4 cast128-test.m4 \ des-test.m4 des3-test.m4 \ - md5-test.m4 md5-compat-test.m4 sha1-test.m4 \ + md5-test.m4 md5-compat-test.m4 sha1-test.m4 sha256-test.m4 \ serpent-test.m4 twofish-test.m4 \ cbc-test.m4