Mercurial > dropbear
comparison makefile @ 380:d5faf4814ddb libtomcrypt-orig libtomcrypt-1.16
Update to LibTomCrypt 1.16
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 11 Jan 2007 02:22:00 +0000 |
parents | 59400faa4b44 |
children |
comparison
equal
deleted
inserted
replaced
280:59400faa4b44 | 380:d5faf4814ddb |
---|---|
2 # | 2 # |
3 # Tom St Denis | 3 # Tom St Denis |
4 # Modified by Clay Culver | 4 # Modified by Clay Culver |
5 | 5 |
6 # The version | 6 # The version |
7 VERSION=1.05 | 7 VERSION=1.16 |
8 | 8 |
9 # Compiler and Linker Names | 9 # Compiler and Linker Names |
10 #CC=gcc | 10 #CC=gcc |
11 #LD=ld | 11 #LD=ld |
12 | 12 |
13 # Archiver [makes .a files] | 13 # Archiver [makes .a files] |
14 #AR=ar | 14 #AR=ar |
15 #ARFLAGS=r | 15 #ARFLAGS=r |
16 | 16 |
17 ifndef MAKE | |
18 MAKE=make | |
19 endif | |
20 | |
21 # ranlib tools | |
22 ifndef RANLIB | |
23 RANLIB=ranlib | |
24 endif | |
25 | |
17 # Compilation flags. Note the += does not write over the user's CFLAGS! | 26 # Compilation flags. Note the += does not write over the user's CFLAGS! |
18 CFLAGS += -c -I./testprof/ -I./src/headers/ -Wall -Wsign-compare -W -Wshadow -Wno-unused-parameter | 27 CFLAGS += -c -I./testprof/ -I./src/headers/ -Wall -Wsign-compare -W -Wshadow -Wno-unused-parameter -DLTC_SOURCE |
19 | 28 |
20 # additional warnings (newer GCC 3.4 and higher) | 29 # additional warnings (newer GCC 3.4 and higher) |
21 #CFLAGS += -Wsystem-headers -Wdeclaration-after-statement -Wbad-function-cast -Wcast-align -Wstrict-prototypes -Wmissing-prototypes \ | 30 ifdef GCC_34 |
22 # -Wmissing-declarations -Wpointer-arith | 31 CFLAGS += -Wsystem-headers -Wdeclaration-after-statement -Wbad-function-cast -Wcast-align -Wstrict-prototypes -Wmissing-prototypes \ |
32 -Wmissing-declarations -Wpointer-arith | |
33 endif | |
23 | 34 |
24 ifndef IGNORE_SPEED | 35 ifndef IGNORE_SPEED |
25 | 36 |
26 # optimize for SPEED | 37 # optimize for SPEED |
27 CFLAGS += -O3 -funroll-loops | 38 CFLAGS += -O3 -funroll-loops |
40 | 51 |
41 # compile for DEBUGING (required for ccmalloc checking!!!) | 52 # compile for DEBUGING (required for ccmalloc checking!!!) |
42 #CFLAGS += -g3 -DLTC_NO_ASM | 53 #CFLAGS += -g3 -DLTC_NO_ASM |
43 | 54 |
44 #Output filenames for various targets. | 55 #Output filenames for various targets. |
45 LIBNAME=libtomcrypt.a | 56 ifndef LIBNAME |
46 LIBTEST=testprof/libtomcrypt_prof.a | 57 LIBNAME=libtomcrypt.a |
58 endif | |
59 ifndef LIBTEST | |
60 LIBTEST=libtomcrypt_prof.a | |
61 endif | |
62 LIBTEST_S=$(LIBTEST) | |
63 | |
47 HASH=hashsum | 64 HASH=hashsum |
48 CRYPT=encrypt | 65 CRYPT=encrypt |
49 SMALL=small | 66 SMALL=small |
50 PROF=x86_prof | 67 PROF=x86_prof |
51 TV=tv_gen | 68 TV=tv_gen |
54 TEST=test | 71 TEST=test |
55 | 72 |
56 #LIBPATH-The directory for libtomcrypt to be installed to. | 73 #LIBPATH-The directory for libtomcrypt to be installed to. |
57 #INCPATH-The directory to install the header files for libtomcrypt. | 74 #INCPATH-The directory to install the header files for libtomcrypt. |
58 #DATAPATH-The directory to install the pdf docs. | 75 #DATAPATH-The directory to install the pdf docs. |
59 DESTDIR= | 76 ifndef DESTDIR |
60 LIBPATH=/usr/lib | 77 DESTDIR= |
61 INCPATH=/usr/include | 78 endif |
62 DATAPATH=/usr/share/doc/libtomcrypt/pdf | 79 |
80 ifndef LIBPATH | |
81 LIBPATH=/usr/lib | |
82 endif | |
83 ifndef INCPATH | |
84 INCPATH=/usr/include | |
85 endif | |
86 ifndef DATAPATH | |
87 DATAPATH=/usr/share/doc/libtomcrypt/pdf | |
88 endif | |
63 | 89 |
64 #Who do we install as? | 90 #Who do we install as? |
65 ifdef INSTALL_USER | 91 ifdef INSTALL_USER |
66 USER=$(INSTALL_USER) | 92 USER=$(INSTALL_USER) |
67 else | 93 else |
73 else | 99 else |
74 GROUP=wheel | 100 GROUP=wheel |
75 endif | 101 endif |
76 | 102 |
77 #List of objects to compile. | 103 #List of objects to compile. |
78 | 104 #START_INS |
79 #Leave MPI built-in or force developer to link against libtommath? | 105 OBJECTS=src/ciphers/aes/aes_enc.o src/ciphers/aes/aes.o src/ciphers/anubis.o src/ciphers/blowfish.o \ |
80 ifndef IGNORE_MPI | 106 src/ciphers/cast5.o src/ciphers/des.o src/ciphers/kasumi.o src/ciphers/khazad.o src/ciphers/kseed.o \ |
81 MPIOBJECT=src/misc/mpi/mpi.o | 107 src/ciphers/noekeon.o src/ciphers/rc2.o src/ciphers/rc5.o src/ciphers/rc6.o src/ciphers/safer/safer.o \ |
82 endif | |
83 | |
84 OBJECTS=src/ciphers/aes/aes_enc.o $(MPIOBJECT) src/ciphers/aes/aes.o src/ciphers/anubis.o \ | |
85 src/ciphers/blowfish.o src/ciphers/cast5.o src/ciphers/des.o src/ciphers/khazad.o src/ciphers/noekeon.o \ | |
86 src/ciphers/rc2.o src/ciphers/rc5.o src/ciphers/rc6.o src/ciphers/safer/safer.o \ | |
87 src/ciphers/safer/safer_tab.o src/ciphers/safer/saferp.o src/ciphers/skipjack.o \ | 108 src/ciphers/safer/safer_tab.o src/ciphers/safer/saferp.o src/ciphers/skipjack.o \ |
88 src/ciphers/twofish/twofish.o src/ciphers/xtea.o src/encauth/ccm/ccm_memory.o \ | 109 src/ciphers/twofish/twofish.o src/ciphers/xtea.o src/encauth/ccm/ccm_memory.o \ |
89 src/encauth/ccm/ccm_test.o src/encauth/eax/eax_addheader.o src/encauth/eax/eax_decrypt.o \ | 110 src/encauth/ccm/ccm_test.o src/encauth/eax/eax_addheader.o src/encauth/eax/eax_decrypt.o \ |
90 src/encauth/eax/eax_decrypt_verify_memory.o src/encauth/eax/eax_done.o src/encauth/eax/eax_encrypt.o \ | 111 src/encauth/eax/eax_decrypt_verify_memory.o src/encauth/eax/eax_done.o src/encauth/eax/eax_encrypt.o \ |
91 src/encauth/eax/eax_encrypt_authenticate_memory.o src/encauth/eax/eax_init.o \ | 112 src/encauth/eax/eax_encrypt_authenticate_memory.o src/encauth/eax/eax_init.o \ |
92 src/encauth/eax/eax_test.o src/encauth/gcm/gcm_add_aad.o src/encauth/gcm/gcm_add_iv.o \ | 113 src/encauth/eax/eax_test.o src/encauth/gcm/gcm_add_aad.o src/encauth/gcm/gcm_add_iv.o \ |
93 src/encauth/gcm/gcm_done.o src/encauth/gcm/gcm_gf_mult.o src/encauth/gcm/gcm_init.o \ | 114 src/encauth/gcm/gcm_done.o src/encauth/gcm/gcm_gf_mult.o src/encauth/gcm/gcm_init.o \ |
94 src/encauth/gcm/gcm_memory.o src/encauth/gcm/gcm_process.o src/encauth/gcm/gcm_reset.o \ | 115 src/encauth/gcm/gcm_memory.o src/encauth/gcm/gcm_mult_h.o src/encauth/gcm/gcm_process.o \ |
95 src/encauth/gcm/gcm_test.o src/encauth/ocb/ocb_decrypt.o src/encauth/ocb/ocb_decrypt_verify_memory.o \ | 116 src/encauth/gcm/gcm_reset.o src/encauth/gcm/gcm_test.o src/encauth/ocb/ocb_decrypt.o \ |
96 src/encauth/ocb/ocb_done_decrypt.o src/encauth/ocb/ocb_done_encrypt.o src/encauth/ocb/ocb_encrypt.o \ | 117 src/encauth/ocb/ocb_decrypt_verify_memory.o src/encauth/ocb/ocb_done_decrypt.o \ |
118 src/encauth/ocb/ocb_done_encrypt.o src/encauth/ocb/ocb_encrypt.o \ | |
97 src/encauth/ocb/ocb_encrypt_authenticate_memory.o src/encauth/ocb/ocb_init.o src/encauth/ocb/ocb_ntz.o \ | 119 src/encauth/ocb/ocb_encrypt_authenticate_memory.o src/encauth/ocb/ocb_init.o src/encauth/ocb/ocb_ntz.o \ |
98 src/encauth/ocb/ocb_shift_xor.o src/encauth/ocb/ocb_test.o src/encauth/ocb/s_ocb_done.o \ | 120 src/encauth/ocb/ocb_shift_xor.o src/encauth/ocb/ocb_test.o src/encauth/ocb/s_ocb_done.o \ |
99 src/hashes/chc/chc.o src/hashes/helper/hash_file.o src/hashes/helper/hash_filehandle.o \ | 121 src/hashes/chc/chc.o src/hashes/helper/hash_file.o src/hashes/helper/hash_filehandle.o \ |
100 src/hashes/helper/hash_memory.o src/hashes/helper/hash_memory_multi.o src/hashes/md2.o src/hashes/md4.o \ | 122 src/hashes/helper/hash_memory.o src/hashes/helper/hash_memory_multi.o src/hashes/md2.o src/hashes/md4.o \ |
101 src/hashes/md5.o src/hashes/rmd128.o src/hashes/rmd160.o src/hashes/sha1.o src/hashes/sha2/sha256.o \ | 123 src/hashes/md5.o src/hashes/rmd128.o src/hashes/rmd160.o src/hashes/rmd256.o src/hashes/rmd320.o \ |
102 src/hashes/sha2/sha512.o src/hashes/tiger.o src/hashes/whirl/whirl.o src/mac/hmac/hmac_done.o \ | 124 src/hashes/sha1.o src/hashes/sha2/sha256.o src/hashes/sha2/sha512.o src/hashes/tiger.o \ |
103 src/mac/hmac/hmac_file.o src/mac/hmac/hmac_init.o src/mac/hmac/hmac_memory.o \ | 125 src/hashes/whirl/whirl.o src/mac/f9/f9_done.o src/mac/f9/f9_file.o src/mac/f9/f9_init.o \ |
126 src/mac/f9/f9_memory.o src/mac/f9/f9_memory_multi.o src/mac/f9/f9_process.o src/mac/f9/f9_test.o \ | |
127 src/mac/hmac/hmac_done.o src/mac/hmac/hmac_file.o src/mac/hmac/hmac_init.o src/mac/hmac/hmac_memory.o \ | |
104 src/mac/hmac/hmac_memory_multi.o src/mac/hmac/hmac_process.o src/mac/hmac/hmac_test.o \ | 128 src/mac/hmac/hmac_memory_multi.o src/mac/hmac/hmac_process.o src/mac/hmac/hmac_test.o \ |
105 src/mac/omac/omac_done.o src/mac/omac/omac_file.o src/mac/omac/omac_init.o src/mac/omac/omac_memory.o \ | 129 src/mac/omac/omac_done.o src/mac/omac/omac_file.o src/mac/omac/omac_init.o src/mac/omac/omac_memory.o \ |
106 src/mac/omac/omac_memory_multi.o src/mac/omac/omac_process.o src/mac/omac/omac_test.o \ | 130 src/mac/omac/omac_memory_multi.o src/mac/omac/omac_process.o src/mac/omac/omac_test.o \ |
107 src/mac/pelican/pelican.o src/mac/pelican/pelican_memory.o src/mac/pelican/pelican_test.o \ | 131 src/mac/pelican/pelican.o src/mac/pelican/pelican_memory.o src/mac/pelican/pelican_test.o \ |
108 src/mac/pmac/pmac_done.o src/mac/pmac/pmac_file.o src/mac/pmac/pmac_init.o src/mac/pmac/pmac_memory.o \ | 132 src/mac/pmac/pmac_done.o src/mac/pmac/pmac_file.o src/mac/pmac/pmac_init.o src/mac/pmac/pmac_memory.o \ |
109 src/mac/pmac/pmac_memory_multi.o src/mac/pmac/pmac_ntz.o src/mac/pmac/pmac_process.o \ | 133 src/mac/pmac/pmac_memory_multi.o src/mac/pmac/pmac_ntz.o src/mac/pmac/pmac_process.o \ |
110 src/mac/pmac/pmac_shift_xor.o src/mac/pmac/pmac_test.o src/misc/base64/base64_decode.o \ | 134 src/mac/pmac/pmac_shift_xor.o src/mac/pmac/pmac_test.o src/mac/xcbc/xcbc_done.o \ |
135 src/mac/xcbc/xcbc_file.o src/mac/xcbc/xcbc_init.o src/mac/xcbc/xcbc_memory.o \ | |
136 src/mac/xcbc/xcbc_memory_multi.o src/mac/xcbc/xcbc_process.o src/mac/xcbc/xcbc_test.o \ | |
137 src/math/fp/ltc_ecc_fp_mulmod.o src/math/gmp_desc.o src/math/ltm_desc.o src/math/multi.o \ | |
138 src/math/rand_prime.o src/math/tfm_desc.o src/misc/base64/base64_decode.o \ | |
111 src/misc/base64/base64_encode.o src/misc/burn_stack.o src/misc/crypt/crypt.o \ | 139 src/misc/base64/base64_encode.o src/misc/burn_stack.o src/misc/crypt/crypt.o \ |
112 src/misc/crypt/crypt_argchk.o src/misc/crypt/crypt_cipher_descriptor.o \ | 140 src/misc/crypt/crypt_argchk.o src/misc/crypt/crypt_cipher_descriptor.o \ |
113 src/misc/crypt/crypt_cipher_is_valid.o src/misc/crypt/crypt_find_cipher.o \ | 141 src/misc/crypt/crypt_cipher_is_valid.o src/misc/crypt/crypt_find_cipher.o \ |
114 src/misc/crypt/crypt_find_cipher_any.o src/misc/crypt/crypt_find_cipher_id.o \ | 142 src/misc/crypt/crypt_find_cipher_any.o src/misc/crypt/crypt_find_cipher_id.o \ |
115 src/misc/crypt/crypt_find_hash.o src/misc/crypt/crypt_find_hash_any.o \ | 143 src/misc/crypt/crypt_find_hash.o src/misc/crypt/crypt_find_hash_any.o \ |
116 src/misc/crypt/crypt_find_hash_id.o src/misc/crypt/crypt_find_prng.o \ | 144 src/misc/crypt/crypt_find_hash_id.o src/misc/crypt/crypt_find_hash_oid.o \ |
117 src/misc/crypt/crypt_hash_descriptor.o src/misc/crypt/crypt_hash_is_valid.o \ | 145 src/misc/crypt/crypt_find_prng.o src/misc/crypt/crypt_fsa.o src/misc/crypt/crypt_hash_descriptor.o \ |
146 src/misc/crypt/crypt_hash_is_valid.o src/misc/crypt/crypt_ltc_mp_descriptor.o \ | |
118 src/misc/crypt/crypt_prng_descriptor.o src/misc/crypt/crypt_prng_is_valid.o \ | 147 src/misc/crypt/crypt_prng_descriptor.o src/misc/crypt/crypt_prng_is_valid.o \ |
119 src/misc/crypt/crypt_register_cipher.o src/misc/crypt/crypt_register_hash.o \ | 148 src/misc/crypt/crypt_register_cipher.o src/misc/crypt/crypt_register_hash.o \ |
120 src/misc/crypt/crypt_register_prng.o src/misc/crypt/crypt_unregister_cipher.o \ | 149 src/misc/crypt/crypt_register_prng.o src/misc/crypt/crypt_unregister_cipher.o \ |
121 src/misc/crypt/crypt_unregister_hash.o src/misc/crypt/crypt_unregister_prng.o \ | 150 src/misc/crypt/crypt_unregister_hash.o src/misc/crypt/crypt_unregister_prng.o \ |
122 src/misc/error_to_string.o src/misc/mpi/is_prime.o src/misc/mpi/mpi_to_ltc_error.o \ | 151 src/misc/error_to_string.o src/misc/pkcs5/pkcs_5_1.o src/misc/pkcs5/pkcs_5_2.o src/misc/zeromem.o \ |
123 src/misc/mpi/rand_prime.o src/misc/pkcs5/pkcs_5_1.o src/misc/pkcs5/pkcs_5_2.o src/misc/zeromem.o \ | |
124 src/modes/cbc/cbc_decrypt.o src/modes/cbc/cbc_done.o src/modes/cbc/cbc_encrypt.o \ | 152 src/modes/cbc/cbc_decrypt.o src/modes/cbc/cbc_done.o src/modes/cbc/cbc_encrypt.o \ |
125 src/modes/cbc/cbc_getiv.o src/modes/cbc/cbc_setiv.o src/modes/cbc/cbc_start.o \ | 153 src/modes/cbc/cbc_getiv.o src/modes/cbc/cbc_setiv.o src/modes/cbc/cbc_start.o \ |
126 src/modes/cfb/cfb_decrypt.o src/modes/cfb/cfb_done.o src/modes/cfb/cfb_encrypt.o \ | 154 src/modes/cfb/cfb_decrypt.o src/modes/cfb/cfb_done.o src/modes/cfb/cfb_encrypt.o \ |
127 src/modes/cfb/cfb_getiv.o src/modes/cfb/cfb_setiv.o src/modes/cfb/cfb_start.o \ | 155 src/modes/cfb/cfb_getiv.o src/modes/cfb/cfb_setiv.o src/modes/cfb/cfb_start.o \ |
128 src/modes/ctr/ctr_decrypt.o src/modes/ctr/ctr_done.o src/modes/ctr/ctr_encrypt.o \ | 156 src/modes/ctr/ctr_decrypt.o src/modes/ctr/ctr_done.o src/modes/ctr/ctr_encrypt.o \ |
129 src/modes/ctr/ctr_getiv.o src/modes/ctr/ctr_setiv.o src/modes/ctr/ctr_start.o \ | 157 src/modes/ctr/ctr_getiv.o src/modes/ctr/ctr_setiv.o src/modes/ctr/ctr_start.o src/modes/ctr/ctr_test.o \ |
130 src/modes/ecb/ecb_decrypt.o src/modes/ecb/ecb_done.o src/modes/ecb/ecb_encrypt.o \ | 158 src/modes/ecb/ecb_decrypt.o src/modes/ecb/ecb_done.o src/modes/ecb/ecb_encrypt.o \ |
131 src/modes/ecb/ecb_start.o src/modes/ofb/ofb_decrypt.o src/modes/ofb/ofb_done.o \ | 159 src/modes/ecb/ecb_start.o src/modes/f8/f8_decrypt.o src/modes/f8/f8_done.o src/modes/f8/f8_encrypt.o \ |
160 src/modes/f8/f8_getiv.o src/modes/f8/f8_setiv.o src/modes/f8/f8_start.o src/modes/f8/f8_test_mode.o \ | |
161 src/modes/lrw/lrw_decrypt.o src/modes/lrw/lrw_done.o src/modes/lrw/lrw_encrypt.o \ | |
162 src/modes/lrw/lrw_getiv.o src/modes/lrw/lrw_process.o src/modes/lrw/lrw_setiv.o \ | |
163 src/modes/lrw/lrw_start.o src/modes/lrw/lrw_test.o src/modes/ofb/ofb_decrypt.o src/modes/ofb/ofb_done.o \ | |
132 src/modes/ofb/ofb_encrypt.o src/modes/ofb/ofb_getiv.o src/modes/ofb/ofb_setiv.o \ | 164 src/modes/ofb/ofb_encrypt.o src/modes/ofb/ofb_getiv.o src/modes/ofb/ofb_setiv.o \ |
133 src/modes/ofb/ofb_start.o src/pk/asn1/der/bit/der_decode_bit_string.o \ | 165 src/modes/ofb/ofb_start.o src/pk/asn1/der/bit/der_decode_bit_string.o \ |
134 src/pk/asn1/der/bit/der_encode_bit_string.o src/pk/asn1/der/bit/der_length_bit_string.o \ | 166 src/pk/asn1/der/bit/der_encode_bit_string.o src/pk/asn1/der/bit/der_length_bit_string.o \ |
135 src/pk/asn1/der/choice/der_decode_choice.o src/pk/asn1/der/ia5/der_decode_ia5_string.o \ | 167 src/pk/asn1/der/boolean/der_decode_boolean.o src/pk/asn1/der/boolean/der_encode_boolean.o \ |
136 src/pk/asn1/der/ia5/der_encode_ia5_string.o src/pk/asn1/der/ia5/der_length_ia5_string.o \ | 168 src/pk/asn1/der/boolean/der_length_boolean.o src/pk/asn1/der/choice/der_decode_choice.o \ |
137 src/pk/asn1/der/integer/der_decode_integer.o src/pk/asn1/der/integer/der_encode_integer.o \ | 169 src/pk/asn1/der/ia5/der_decode_ia5_string.o src/pk/asn1/der/ia5/der_encode_ia5_string.o \ |
138 src/pk/asn1/der/integer/der_length_integer.o \ | 170 src/pk/asn1/der/ia5/der_length_ia5_string.o src/pk/asn1/der/integer/der_decode_integer.o \ |
171 src/pk/asn1/der/integer/der_encode_integer.o src/pk/asn1/der/integer/der_length_integer.o \ | |
139 src/pk/asn1/der/object_identifier/der_decode_object_identifier.o \ | 172 src/pk/asn1/der/object_identifier/der_decode_object_identifier.o \ |
140 src/pk/asn1/der/object_identifier/der_encode_object_identifier.o \ | 173 src/pk/asn1/der/object_identifier/der_encode_object_identifier.o \ |
141 src/pk/asn1/der/object_identifier/der_length_object_identifier.o \ | 174 src/pk/asn1/der/object_identifier/der_length_object_identifier.o \ |
142 src/pk/asn1/der/octet/der_decode_octet_string.o src/pk/asn1/der/octet/der_encode_octet_string.o \ | 175 src/pk/asn1/der/octet/der_decode_octet_string.o src/pk/asn1/der/octet/der_encode_octet_string.o \ |
143 src/pk/asn1/der/octet/der_length_octet_string.o \ | 176 src/pk/asn1/der/octet/der_length_octet_string.o \ |
144 src/pk/asn1/der/printable_string/der_decode_printable_string.o \ | 177 src/pk/asn1/der/printable_string/der_decode_printable_string.o \ |
145 src/pk/asn1/der/printable_string/der_encode_printable_string.o \ | 178 src/pk/asn1/der/printable_string/der_encode_printable_string.o \ |
146 src/pk/asn1/der/printable_string/der_length_printable_string.o \ | 179 src/pk/asn1/der/printable_string/der_length_printable_string.o \ |
147 src/pk/asn1/der/sequence/der_decode_sequence.o src/pk/asn1/der/sequence/der_decode_sequence_multi.o \ | 180 src/pk/asn1/der/sequence/der_decode_sequence_ex.o \ |
148 src/pk/asn1/der/sequence/der_encode_sequence.o src/pk/asn1/der/sequence/der_encode_sequence_multi.o \ | 181 src/pk/asn1/der/sequence/der_decode_sequence_flexi.o \ |
149 src/pk/asn1/der/sequence/der_length_sequence.o \ | 182 src/pk/asn1/der/sequence/der_decode_sequence_multi.o \ |
150 src/pk/asn1/der/short_integer/der_decode_short_integer.o \ | 183 src/pk/asn1/der/sequence/der_encode_sequence_ex.o \ |
184 src/pk/asn1/der/sequence/der_encode_sequence_multi.o src/pk/asn1/der/sequence/der_length_sequence.o \ | |
185 src/pk/asn1/der/sequence/der_sequence_free.o src/pk/asn1/der/set/der_encode_set.o \ | |
186 src/pk/asn1/der/set/der_encode_setof.o src/pk/asn1/der/short_integer/der_decode_short_integer.o \ | |
151 src/pk/asn1/der/short_integer/der_encode_short_integer.o \ | 187 src/pk/asn1/der/short_integer/der_encode_short_integer.o \ |
152 src/pk/asn1/der/short_integer/der_length_short_integer.o src/pk/asn1/der/utctime/der_decode_utctime.o \ | 188 src/pk/asn1/der/short_integer/der_length_short_integer.o src/pk/asn1/der/utctime/der_decode_utctime.o \ |
153 src/pk/asn1/der/utctime/der_encode_utctime.o src/pk/asn1/der/utctime/der_length_utctime.o \ | 189 src/pk/asn1/der/utctime/der_encode_utctime.o src/pk/asn1/der/utctime/der_length_utctime.o \ |
154 src/pk/dh/dh.o src/pk/dsa/dsa_export.o src/pk/dsa/dsa_free.o src/pk/dsa/dsa_import.o \ | 190 src/pk/asn1/der/utf8/der_decode_utf8_string.o src/pk/asn1/der/utf8/der_encode_utf8_string.o \ |
155 src/pk/dsa/dsa_make_key.o src/pk/dsa/dsa_sign_hash.o src/pk/dsa/dsa_verify_hash.o \ | 191 src/pk/asn1/der/utf8/der_length_utf8_string.o src/pk/dsa/dsa_decrypt_key.o \ |
156 src/pk/dsa/dsa_verify_key.o src/pk/ecc/ecc.o src/pk/packet_store_header.o src/pk/packet_valid_header.o \ | 192 src/pk/dsa/dsa_encrypt_key.o src/pk/dsa/dsa_export.o src/pk/dsa/dsa_free.o src/pk/dsa/dsa_import.o \ |
157 src/pk/pkcs1/pkcs_1_i2osp.o src/pk/pkcs1/pkcs_1_mgf1.o src/pk/pkcs1/pkcs_1_oaep_decode.o \ | 193 src/pk/dsa/dsa_make_key.o src/pk/dsa/dsa_shared_secret.o src/pk/dsa/dsa_sign_hash.o \ |
158 src/pk/pkcs1/pkcs_1_oaep_encode.o src/pk/pkcs1/pkcs_1_os2ip.o src/pk/pkcs1/pkcs_1_pss_decode.o \ | 194 src/pk/dsa/dsa_verify_hash.o src/pk/dsa/dsa_verify_key.o src/pk/ecc/ecc.o \ |
159 src/pk/pkcs1/pkcs_1_pss_encode.o src/pk/rsa/rsa_decrypt_key.o src/pk/rsa/rsa_encrypt_key.o \ | 195 src/pk/ecc/ecc_ansi_x963_export.o src/pk/ecc/ecc_ansi_x963_import.o src/pk/ecc/ecc_decrypt_key.o \ |
196 src/pk/ecc/ecc_encrypt_key.o src/pk/ecc/ecc_export.o src/pk/ecc/ecc_free.o src/pk/ecc/ecc_get_size.o \ | |
197 src/pk/ecc/ecc_import.o src/pk/ecc/ecc_make_key.o src/pk/ecc/ecc_shared_secret.o \ | |
198 src/pk/ecc/ecc_sign_hash.o src/pk/ecc/ecc_sizes.o src/pk/ecc/ecc_test.o src/pk/ecc/ecc_verify_hash.o \ | |
199 src/pk/ecc/ltc_ecc_is_valid_idx.o src/pk/ecc/ltc_ecc_map.o src/pk/ecc/ltc_ecc_mul2add.o \ | |
200 src/pk/ecc/ltc_ecc_mulmod.o src/pk/ecc/ltc_ecc_mulmod_timing.o src/pk/ecc/ltc_ecc_points.o \ | |
201 src/pk/ecc/ltc_ecc_projective_add_point.o src/pk/ecc/ltc_ecc_projective_dbl_point.o \ | |
202 src/pk/katja/katja_decrypt_key.o src/pk/katja/katja_encrypt_key.o src/pk/katja/katja_export.o \ | |
203 src/pk/katja/katja_exptmod.o src/pk/katja/katja_free.o src/pk/katja/katja_import.o \ | |
204 src/pk/katja/katja_make_key.o src/pk/pkcs1/pkcs_1_i2osp.o src/pk/pkcs1/pkcs_1_mgf1.o \ | |
205 src/pk/pkcs1/pkcs_1_oaep_decode.o src/pk/pkcs1/pkcs_1_oaep_encode.o src/pk/pkcs1/pkcs_1_os2ip.o \ | |
206 src/pk/pkcs1/pkcs_1_pss_decode.o src/pk/pkcs1/pkcs_1_pss_encode.o src/pk/pkcs1/pkcs_1_v1_5_decode.o \ | |
207 src/pk/pkcs1/pkcs_1_v1_5_encode.o src/pk/rsa/rsa_decrypt_key.o src/pk/rsa/rsa_encrypt_key.o \ | |
160 src/pk/rsa/rsa_export.o src/pk/rsa/rsa_exptmod.o src/pk/rsa/rsa_free.o src/pk/rsa/rsa_import.o \ | 208 src/pk/rsa/rsa_export.o src/pk/rsa/rsa_exptmod.o src/pk/rsa/rsa_free.o src/pk/rsa/rsa_import.o \ |
161 src/pk/rsa/rsa_make_key.o src/pk/rsa/rsa_sign_hash.o src/pk/rsa/rsa_verify_hash.o src/prngs/fortuna.o \ | 209 src/pk/rsa/rsa_make_key.o src/pk/rsa/rsa_sign_hash.o src/pk/rsa/rsa_verify_hash.o src/prngs/fortuna.o \ |
162 src/prngs/rc4.o src/prngs/rng_get_bytes.o src/prngs/rng_make_prng.o src/prngs/sober128.o \ | 210 src/prngs/rc4.o src/prngs/rng_get_bytes.o src/prngs/rng_make_prng.o src/prngs/sober128.o \ |
163 src/prngs/sprng.o src/prngs/yarrow.o | 211 src/prngs/sprng.o src/prngs/yarrow.o |
164 | 212 |
165 HEADERS=src/headers/tommath_superclass.h src/headers/tomcrypt_cfg.h src/headers/tomcrypt_mac.h \ | 213 HEADERS=src/headers/tomcrypt_cfg.h src/headers/tomcrypt_mac.h src/headers/tomcrypt_macros.h \ |
166 src/headers/tomcrypt_macros.h src/headers/tomcrypt_custom.h src/headers/tomcrypt_argchk.h \ | 214 src/headers/tomcrypt_custom.h src/headers/tomcrypt_argchk.h src/headers/tomcrypt_cipher.h \ |
167 src/headers/tomcrypt_cipher.h src/headers/tomcrypt_pk.h src/headers/tommath_class.h \ | 215 src/headers/tomcrypt_pk.h src/headers/tomcrypt_hash.h src/headers/tomcrypt_math.h \ |
168 src/headers/ltc_tommath.h src/headers/tomcrypt_hash.h src/headers/tomcrypt_misc.h \ | 216 src/headers/tomcrypt_misc.h src/headers/tomcrypt.h src/headers/tomcrypt_pkcs.h \ |
169 src/headers/tomcrypt.h src/headers/tomcrypt_pkcs.h src/headers/tomcrypt_prng.h testprof/tomcrypt_test.h | 217 src/headers/tomcrypt_prng.h testprof/tomcrypt_test.h |
218 | |
219 #END_INS | |
170 | 220 |
171 TESTOBJECTS=demos/test.o | 221 TESTOBJECTS=demos/test.o |
172 HASHOBJECTS=demos/hashsum.o | 222 HASHOBJECTS=demos/hashsum.o |
173 CRYPTOBJECTS=demos/encrypt.o | 223 CRYPTOBJECTS=demos/encrypt.o |
174 SMALLOBJECTS=demos/small.o | 224 SMALLOBJECTS=demos/small.o |
192 | 242 |
193 #These are the rules to make certain object files. | 243 #These are the rules to make certain object files. |
194 src/ciphers/aes/aes.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c | 244 src/ciphers/aes/aes.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c |
195 src/ciphers/twofish/twofish.o: src/ciphers/twofish/twofish.c src/ciphers/twofish/twofish_tab.c | 245 src/ciphers/twofish/twofish.o: src/ciphers/twofish/twofish.c src/ciphers/twofish/twofish_tab.c |
196 src/hashes/whirl/whirl.o: src/hashes/whirl/whirl.c src/hashes/whirl/whirltab.c | 246 src/hashes/whirl/whirl.o: src/hashes/whirl/whirl.c src/hashes/whirl/whirltab.c |
197 src/pk/ecc/ecc.o: src/pk/ecc/ecc.c src/pk/ecc/ecc_sys.c | |
198 src/pk/dh/dh.o: src/pk/dh/dh.c src/pk/dh/dh_sys.c | |
199 src/hashes/sha2/sha512.o: src/hashes/sha2/sha512.c src/hashes/sha2/sha384.c | 247 src/hashes/sha2/sha512.o: src/hashes/sha2/sha512.c src/hashes/sha2/sha384.c |
200 src/hashes/sha2/sha256.o: src/hashes/sha2/sha256.c src/hashes/sha2/sha224.c | 248 src/hashes/sha2/sha256.o: src/hashes/sha2/sha256.c src/hashes/sha2/sha224.c |
201 | 249 |
202 #This rule makes the libtomcrypt library. | 250 #This rule makes the libtomcrypt library. |
203 library: $(LIBNAME) | 251 library: $(LIBNAME) |
204 | 252 |
205 $(LIBTEST): | 253 testprof/$(LIBTEST): |
206 cd testprof ; CFLAGS="$(CFLAGS)" make | 254 cd testprof ; CFLAGS="$(CFLAGS)" LIBTEST_S=$(LIBTEST_S) $(MAKE) |
207 | 255 |
208 $(LIBNAME): $(OBJECTS) | 256 $(LIBNAME): $(OBJECTS) |
209 $(AR) $(ARFLAGS) $@ $(OBJECTS) | 257 $(AR) $(ARFLAGS) $@ $(OBJECTS) |
210 ranlib $(LIBNAME) | 258 $(RANLIB) $@ |
211 | 259 |
212 #This rule makes the hash program included with libtomcrypt | 260 #This rule makes the hash program included with libtomcrypt |
213 hashsum: library $(HASHOBJECTS) | 261 hashsum: library $(HASHOBJECTS) |
214 $(CC) $(HASHOBJECTS) $(LIBNAME) -o $(HASH) $(WARN) | 262 $(CC) $(HASHOBJECTS) $(LIBNAME) $(EXTRALIBS) -o $(HASH) $(WARN) |
215 | 263 |
216 #makes the crypt program | 264 #makes the crypt program |
217 crypt: library $(CRYPTOBJECTS) | 265 crypt: library $(CRYPTOBJECTS) |
218 $(CC) $(CRYPTOBJECTS) $(LIBNAME) -o $(CRYPT) $(WARN) | 266 $(CC) $(CRYPTOBJECTS) $(LIBNAME) $(EXTRALIBS) -o $(CRYPT) $(WARN) |
219 | 267 |
220 #makes the small program | 268 #makes the small program |
221 small: library $(SMALLOBJECTS) | 269 small: library $(SMALLOBJECTS) |
222 $(CC) $(SMALLOBJECTS) $(LIBNAME) -o $(SMALL) $(WARN) | 270 $(CC) $(SMALLOBJECTS) $(LIBNAME) $(EXTRALIBS) -o $(SMALL) $(WARN) |
223 | 271 |
224 tv_gen: library $(TVS) | 272 tv_gen: library $(TVS) |
225 $(CC) $(TVS) $(LIBNAME) -o $(TV) | 273 $(CC) $(LDFLAGS) $(TVS) $(LIBNAME) $(EXTRALIBS) -o $(TV) |
226 | 274 |
227 multi: library $(MULTIS) | 275 multi: library $(MULTIS) |
228 $(CC) $(MULTIS) $(LIBNAME) -o $(MULTI) | 276 $(CC) $(MULTIS) $(LIBNAME) $(EXTRALIBS) -o $(MULTI) |
229 | 277 |
230 timing: library $(LIBTEST) $(TIMINGS) | 278 timing: library testprof/$(LIBTEST) $(TIMINGS) |
231 $(CC) $(TIMINGS) $(LIBTEST) $(LIBNAME) $(EXTRALIBS) -o $(TIMING) | 279 $(CC) $(LDFLAGS) $(TIMINGS) testprof/$(LIBTEST) $(LIBNAME) $(EXTRALIBS) -o $(TIMING) |
232 | 280 |
233 test: library $(LIBTEST) $(TESTS) | 281 test: library testprof/$(LIBTEST) $(TESTS) |
234 $(CC) $(TESTS) $(LIBTEST) $(LIBNAME) -o $(TEST) | 282 $(CC) $(LDFLAGS) $(TESTS) testprof/$(LIBTEST) $(LIBNAME) $(EXTRALIBS) -o $(TEST) |
235 | |
236 | 283 |
237 #This rule installs the library and the header files. This must be run | 284 #This rule installs the library and the header files. This must be run |
238 #as root in order to have a high enough permission to write to the correct | 285 #as root in order to have a high enough permission to write to the correct |
239 #directories and to set the owner and group to root. | 286 #directories and to set the owner and group to root. |
287 ifndef NODOCS | |
240 install: library docs | 288 install: library docs |
289 else | |
290 install: library | |
291 endif | |
241 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH) | 292 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH) |
242 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH) | 293 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH) |
243 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(DATAPATH) | 294 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(DATAPATH) |
244 install -g $(GROUP) -o $(USER) $(LIBNAME) $(DESTDIR)$(LIBPATH) | 295 install -g $(GROUP) -o $(USER) $(LIBNAME) $(DESTDIR)$(LIBPATH) |
245 install -g $(GROUP) -o $(USER) $(HEADERS) $(DESTDIR)$(INCPATH) | 296 install -g $(GROUP) -o $(USER) $(HEADERS) $(DESTDIR)$(INCPATH) |
297 ifndef NODOCS | |
246 install -g $(GROUP) -o $(USER) doc/crypt.pdf $(DESTDIR)$(DATAPATH) | 298 install -g $(GROUP) -o $(USER) doc/crypt.pdf $(DESTDIR)$(DATAPATH) |
247 | 299 endif |
248 install_test: $(LIBTEST) | 300 |
301 install_test: testprof/$(LIBTEST) | |
249 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH) | 302 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH) |
250 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH) | 303 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH) |
251 install -g $(GROUP) -o $(USER) $(LIBTEST) $(DESTDIR)$(LIBPATH) | 304 install -g $(GROUP) -o $(USER) testprof/$(LIBTEST) $(DESTDIR)$(LIBPATH) |
252 | 305 |
253 profile: | 306 profile: |
254 CFLAGS="$(CFLAGS) -fprofile-generate" make timing EXTRALIBS=-lgcov | 307 CFLAGS="$(CFLAGS) -fprofile-generate" $(MAKE) timing EXTRALIBS="$(EXTRALIBS) -lgcov" |
255 ./timing | 308 ./timing |
256 rm -f timing `find . -type f | grep [.][ao] | xargs` | 309 rm -f timing `find . -type f | grep [.][ao] | xargs` |
257 CFLAGS="$(CFLAGS) -fprofile-use" make timing EXTRALIBS=-lgcov | 310 CFLAGS="$(CFLAGS) -fprofile-use" $(MAKE) timing EXTRALIBS="$(EXTRALIBS) -lgcov" |
258 | 311 |
259 | 312 |
260 #This rule cleans the source tree of all compiled code, not including the pdf | 313 #This rule cleans the source tree of all compiled code, not including the pdf |
261 #documentation. | 314 #documentation. |
262 clean: | 315 clean: |
280 rm -f *.txt | 333 rm -f *.txt |
281 | 334 |
282 #build the doxy files (requires Doxygen, tetex and patience) | 335 #build the doxy files (requires Doxygen, tetex and patience) |
283 doxy: | 336 doxy: |
284 doxygen | 337 doxygen |
285 cd doc/doxygen/latex ; make ; mv -f refman.pdf ../../. | 338 cd doc/doxygen/latex ; ${MAKE} ; mv -f refman.pdf ../../. |
286 echo The huge doxygen PDF should be available as doc/refman.pdf | 339 echo The huge doxygen PDF should be available as doc/refman.pdf |
287 | 340 |
288 #This builds the crypt.pdf file. Note that the rm -f *.pdf has been removed | 341 #This builds the crypt.pdf file. Note that the rm -f *.pdf has been removed |
289 #from the clean command! This is because most people would like to keep the | 342 #from the clean command! This is because most people would like to keep the |
290 #nice pre-compiled crypt.pdf that comes with libtomcrypt! We only need to | 343 #nice pre-compiled crypt.pdf that comes with libtomcrypt! We only need to |
293 rm -f doc/crypt.pdf $(LEFTOVERS) | 346 rm -f doc/crypt.pdf $(LEFTOVERS) |
294 echo "hello" > crypt.ind | 347 echo "hello" > crypt.ind |
295 latex crypt > /dev/null | 348 latex crypt > /dev/null |
296 latex crypt > /dev/null | 349 latex crypt > /dev/null |
297 makeindex crypt.idx > /dev/null | 350 makeindex crypt.idx > /dev/null |
351 perl fixupind.pl | |
298 latex crypt > /dev/null | 352 latex crypt > /dev/null |
299 dvipdf crypt | 353 dvipdf crypt |
300 mv -ivf crypt.pdf doc/crypt.pdf | 354 mv -ivf crypt.pdf doc/crypt.pdf |
301 rm -f $(LEFTOVERS) | 355 rm -f $(LEFTOVERS) |
302 | 356 |
303 docdvi: crypt.tex | 357 docdvi: crypt.tex |
304 echo hello > crypt.ind | 358 echo hello > crypt.ind |
305 latex crypt > /dev/null | 359 latex crypt > /dev/null |
306 latex crypt > /dev/null | 360 latex crypt > /dev/null |
307 makeindex crypt.idx | 361 makeindex crypt.idx |
362 perl fixupind.pl | |
363 latex crypt > /dev/null | |
308 latex crypt > /dev/null | 364 latex crypt > /dev/null |
309 | 365 |
310 #zipup the project (take that!) | 366 #zipup the project (take that!) |
311 no_oops: clean | 367 no_oops: clean |
312 cd .. ; cvs commit | 368 cd .. ; cvs commit |
322 gpg -b -a crypt-$(VERSION).tar.bz2 ; gpg -b -a crypt-$(VERSION).zip ; \ | 378 gpg -b -a crypt-$(VERSION).tar.bz2 ; gpg -b -a crypt-$(VERSION).zip ; \ |
323 mv -fv crypt* ~ ; rm -rf libtomcrypt-$(VERSION) | 379 mv -fv crypt* ~ ; rm -rf libtomcrypt-$(VERSION) |
324 | 380 |
325 | 381 |
326 # $Source: /cvs/libtom/libtomcrypt/makefile,v $ | 382 # $Source: /cvs/libtom/libtomcrypt/makefile,v $ |
327 # $Revision: 1.70 $ | 383 # $Revision: 1.145 $ |
328 # $Date: 2005/06/19 18:03:24 $ | 384 # $Date: 2006/12/02 19:23:21 $ |