~ubuntu-branches/ubuntu/natty/libgcrypt11/natty-proposed

« back to all changes in this revision

Viewing changes to cipher/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2009-02-21 13:46:58 UTC
  • mto: (1.1.6 upstream) (2.1.3 squeeze)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20090221134658-855twvcr4ezk2ron
ImportĀ upstreamĀ versionĀ 1.4.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# GNU Lesser General Public License for more details.
16
16
#
17
17
# You should have received a copy of the GNU Lesser General Public
18
 
# License along with this program; if not, write to the Free Software
19
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
18
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
20
19
 
21
20
# Process this file with automake to produce Makefile.in
22
21
 
30
29
 
31
30
noinst_LTLIBRARIES = libcipher.la
32
31
 
33
 
GCRYPT_MODULES = @GCRYPT_CIPHERS@ @GCRYPT_PUBKEY_CIPHERS@ @GCRYPT_DIGESTS@ \
34
 
                 @GCRYPT_RANDOM@
 
32
GCRYPT_MODULES = @GCRYPT_CIPHERS@ @GCRYPT_PUBKEY_CIPHERS@ @GCRYPT_DIGESTS@
35
33
 
36
34
libcipher_la_DEPENDENCIES = $(GCRYPT_MODULES)
37
35
libcipher_la_LIBADD = $(GCRYPT_MODULES)
38
36
 
39
37
libcipher_la_SOURCES = \
40
38
cipher.c pubkey.c ac.c md.c \
 
39
hmac-tests.c \
41
40
bithelp.h  \
42
41
primegen.c  \
43
 
random.c random.h \
44
 
rndhw.c \
45
 
rand-internal.h \
 
42
hash-common.c hash-common.h \
46
43
rmd.h
47
44
 
48
 
if USE_RANDOM_DAEMON
49
 
libcipher_la_SOURCES += random-daemon.c 
50
 
endif USE_RANDOM_DAEMON
51
 
 
52
 
 
53
45
EXTRA_libcipher_la_SOURCES = \
54
46
arcfour.c \
55
47
blowfish.c \
63
55
md5.c \
64
56
rijndael.c rijndael-tables.h \
65
57
rmd160.c \
66
 
rndlinux.c \
67
 
rndegd.c \
68
 
rndunix.c \
69
 
rndw32.c \
70
58
rsa.c \
71
59
seed.c \
72
60
serpent.c \
79
67
rfc2268.c \
80
68
camellia.c camellia.h camellia-glue.c
81
69
 
 
70
 
82
71
# We need to lower the optimization for this module.
83
72
tiger.o: $(srcdir)/tiger.c
84
73
        `echo $(COMPILE) -c $(srcdir)/tiger.c | sed -e 's/-O[2-9s]*/-O1/g' `