Added cipher acceleration to SILC Accelerator. Added cipher softacc.
[crypto.git] / lib / silcacc / Makefile.ad
1 #
2 #  Makefile.ad
3 #
4 #  Author: Pekka Riikonen <priikone@silcnet.org>
5 #
6 #  Copyright (C) 2007 - 2008 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 noinst_LTLIBRARIES = libsilcacc.la
21
22 libsilcacc_la_SOURCES = silcacc.c               \
23                         silcacc_pkcs.c          \
24                         silcacc_cipher.c        \
25                         silcacc.h               \
26 #ifdef SILC_DIST_SOFTACC
27                         softacc.c               \
28                         softacc.h               \
29                         softacc_i.h             \
30 #ifdef SILC_DIST_SOFTACC_PKCS
31                         softacc_pkcs.c          \
32 #endif SILC_DIST_SOFTACC_PKCS
33 #ifdef SILC_DIST_SOFTACC_CIPHER
34                         softacc_cipher.c        \
35 #endif SILC_DIST_SOFTACC_CIPHER
36 #endif SILC_DIST_SOFTACC
37
38 include_HEADERS =       silcacc.h               \
39 #ifdef SILC_DIST_SOFTACC
40                         softacc.h
41 #endif SILC_DIST_SOFTACC
42
43 EXTRA_DIST = $(SILC_EXTRA_DIST)
44
45 include $(top_srcdir)/Makefile.defines.in