443d1a9cdd6332782ced577e68267d5394c70599
[crypto.git] / lib / silccrypt / tests / Makefile.am
1 #
2 #  Makefile.am
3 #
4 #  Author: Pekka Riikonen <priikone@silcnet.org>
5 #
6 #  Copyright (C) 2002 - 2003 Pekka Riikonen
7 #
8 #  This program is free software; you can redistribute it and/or modify
9 #  it under the terms of the GNU General Public License as published by
10 #  the Free Software Foundation; version 2 of the License.
11 #
12 #  This program is distributed in the hope that it will be useful,
13 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #  GNU General Public License for more details.
16 #
17
18 AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign
19
20 bin_PROGRAMS =  test_sha1       \
21                 test_sha256     \
22                 test_md5        \
23                 test_hmacsha1   \
24                 test_hmacsha256 \
25                 test_hmacmd5    \
26                 test_aes        \
27                 test_twofish    \
28                 test_cast5      \
29                 test_des        \
30                 test_silcpkcs   \
31                 test_dsa        \
32                 test_hash
33
34 test_hash_SOURCES = test_hash.c
35 test_sha1_SOURCES = test_sha1.c
36 test_sha256_SOURCES = test_sha256.c
37 test_md5_SOURCES = test_md5.c
38 test_hmacsha1_SOURCES = test_hmacsha1.c
39 test_hmacsha256_SOURCES = test_hmacsha256.c
40 test_hmacmd5_SOURCES = test_hmacmd5.c
41
42 test_aes_SOURCES = test_aes.c
43 test_twofish_SOURCES = test_twofish.c
44 test_cast5_SOURCES = test_cast5.c
45 test_des_SOURCES = test_des.c
46
47 test_silcpkcs_SOURCES = test_silcpkcs.c
48 test_dsa_SOURCES = test_dsa.c
49
50 LIBS = $(SILC_COMMON_LIBS)
51 LDADD = -L.. -L../.. -lsct
52
53 include $(top_srcdir)/Makefile.defines.in