addition of silc.css
[silc.git] / lib / silccrypt / Makefile.am
1 #
2 #  Makefile.am
3 #
4 #  Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
5 #
6 #  Copyright (C) 2000 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; either version 2 of the License, or
11 #  (at your option) any later version.
12 #
13 #  This program is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #  GNU General Public License for more details.
17 #
18
19 AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign
20
21 noinst_LIBRARIES = libsilccrypt.a
22
23 libsilccrypt_a_SOURCES = \
24         none.c \
25         rc5.c \
26         rc6.c \
27         mars.c \
28         md5.c \
29         aes.c \
30         rsa.c \
31         sha1.c \
32         twofish.c \
33         blowfish.c \
34         cast.c \
35         silccipher.c \
36         silchash.c \
37         silchmac.c \
38         silcrng.c \
39         silcpkcs.c \
40         pkcs1.c
41
42 if SILC_DIST_TOOLKIT
43 include_HEADERS =       \
44         aes.h           \
45         blowfish.h      \
46         cast.h          \
47         ciphers_def.h   \
48         ciphers.h       \
49         mars.h          \
50         md5.h           \
51         none.h          \
52         pkcs1.h         \
53         rc5.h           \
54         rc6.h           \
55         rsa.h           \
56         sha1.h          \
57         silccipher.h    \
58         silcdh.h        \
59         silchash.h      \
60         silchmac.h      \
61         silcpkcs.h      \
62         silcrng.h       \
63         twofish.h
64 endif
65
66 EXTRA_DIST = *.h
67
68 include $(top_srcdir)/Makefile.defines.in