c3f058f0af2a5d4583b08ceb95074e02fe4c7f08
[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_LTLIBRARIES = libsilccrypt.la
22
23 libsilccrypt_la_SOURCES = \
24         none.c \
25         rc5.c \
26         rc6.c \
27         md5.c \
28         aes.c \
29         rsa.c \
30         sha1.c \
31         twofish.c \
32         blowfish.c \
33         cast.c \
34         silccipher.c \
35         silchash.c \
36         silchmac.c \
37         silcrng.c \
38         silcpkcs.c \
39         pkcs1.c
40
41 if SILC_DIST_TOOLKIT
42 include_HEADERS =       \
43         aes.h           \
44         blowfish.h      \
45         cast.h          \
46         ciphers_def.h   \
47         ciphers.h       \
48         md5.h           \
49         none.h          \
50         pkcs1.h         \
51         rc5.h           \
52         rc6.h           \
53         rsa.h           \
54         sha1.h          \
55         silccipher.h    \
56         silcdh.h        \
57         silchash.h      \
58         silchmac.h      \
59         silcpkcs.h      \
60         silcrng.h       \
61         twofish.h
62 endif
63
64 EXTRA_DIST = *.h
65
66 include $(top_srcdir)/Makefile.defines.in