Mercurial > dropbear
comparison libtomcrypt/Makefile.in @ 1472:cc94e83f01e2
Update Makefile.in
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 09 Feb 2018 22:19:42 +0800 |
parents | 6dba84798cd5 |
children | d398809812e6 |
comparison
equal
deleted
inserted
replaced
1471:6dba84798cd5 | 1472:cc94e83f01e2 |
---|---|
1 # MAKEFILE for linux GCC | 1 # MAKEFILE that is intended to be compatible with any kind of make (GNU make, BSD make, ...) |
2 # | 2 # works on: Linux, *BSD, Cygwin, AIX, HP-UX and hopefully other UNIX systems |
3 # Tom St Denis | 3 # |
4 # Modified by Clay Culver | 4 # Please do not use here neither any special make syntax nor any unusual tools/utilities! |
5 | 5 # |
6 # The version | 6 # BEWARE: variables OBJECTS, TOBJECTS, HEADERS, VERSION are updated via ./updatemakes.sh |
7 VERSION=1.17 | 7 |
8 | 8 ### USAGE: |
9 PLATFORM := $(shell uname | sed -e 's/_.*//') | 9 # |
10 | 10 # make -f makefile.unix all |
11 | 11 # ./test |
12 srcdir=. | 12 # make -f makefile.unix install |
13 | 13 # |
14 # Compiler and Linker Names | 14 #Or: |
15 #CC=gcc | 15 # |
16 #LD=ld | 16 # make -f makefile.unix CFLAGS="-O3 -DUSE_LTM -DLTM_DESC -I/path/to/libtommath" EXTRALIBS=/path/to/libtommath/libtommath.a all |
17 | 17 # ./test |
18 # Archiver [makes .a files] | 18 # make -f makefile.unix PREFIX=/opt/libtom install |
19 #AR=ar | 19 # |
20 #ARFLAGS=r | 20 #Or if you are using Intel C compiler you might need something like: |
21 | 21 # |
22 ifndef MAKE | 22 # make -f makefile.unix CC=icc AR=xiar CFLAGS="-fast -DUSE_LTM -DLTM_DESC -I/path/to/libtommath" EXTRALIBS=/path/to/libtommath/libtommath.a all |
23 MAKE=make | 23 # |
24 endif | 24 |
25 | 25 VPATH=@srcdir@ |
26 # ranlib tools | 26 srcdir=@srcdir@ |
27 ifndef RANLIB | 27 |
28 ifeq ($(PLATFORM), Darwin) | 28 #The following can be overridden from command line e.g. "make -f makefile.unix CC=gcc ARFLAGS=rcs" |
29 RANLIB=ranlib -c | 29 DESTDIR = |
30 else | 30 PREFIX = /usr/local |
31 RANLIB=ranlib | 31 LIBPATH = $(PREFIX)/lib |
32 endif | 32 INCPATH = $(PREFIX)/include |
33 endif | 33 DATAPATH = $(PREFIX)/share/doc/libtomcrypt/pdf |
34 | 34 BINPATH = $(PREFIX)/bin |
35 # Compilation flags. Note the += does not write over the user's CFLAGS! | 35 CC = cc |
36 # The rest of the flags come from the parent Dropbear makefile | 36 AR = ar |
37 CFLAGS += -c -Isrc/headers/ -I$(srcdir)/src/headers/ -I../ -I$(srcdir)/../ -DLTC_SOURCE -I../libtommath/ -I$(srcdir)/../libtommath/ | 37 ARFLAGS = r |
38 | 38 RANLIB = ranlib |
39 # additional warnings (newer GCC 3.4 and higher) | 39 #CFLAGS = -O2 -DUSE_LTM -DLTM_DESC -I../libtommath |
40 ifdef GCC_34 | 40 EXTRALIBS = ../libtommath/libtommath.a |
41 CFLAGS += -Wsystem-headers -Wdeclaration-after-statement -Wbad-function-cast -Wcast-align -Wstrict-prototypes -Wmissing-prototypes \ | 41 |
42 -Wmissing-declarations -Wpointer-arith | 42 #Compilation flags |
43 endif | 43 LTC_CFLAGS = -Isrc/headers/ -I$(srcdir)/src/headers/ -I../ -I$(srcdir)/../ -DLTC_SOURCE -I../libtommath/ -I$(srcdir)/../libtommath/ |
44 | 44 LTC_LDFLAGS = $(LDFLAGS) $(EXTRALIBS) |
45 ifndef IGNORE_SPEED | 45 VERSION=1.18.1 |
46 | 46 |
47 # optimize for SPEED | 47 #Libraries to be created (this makefile builds only static libraries) |
48 #CFLAGS += -O3 -funroll-loops | 48 LIBMAIN_S =libtomcrypt.a |
49 | 49 |
50 # add -fomit-frame-pointer. hinders debugging! | 50 #List of objects to compile (all goes to libtomcrypt.a) |
51 #CFLAGS += -fomit-frame-pointer | 51 OBJECTS=src/ciphers/aes/aes.o src/ciphers/aes/aes_enc.o src/ciphers/anubis.o src/ciphers/blowfish.o \ |
52 | 52 src/ciphers/camellia.o src/ciphers/cast5.o src/ciphers/des.o src/ciphers/kasumi.o src/ciphers/khazad.o \ |
53 # optimize for SIZE | 53 src/ciphers/kseed.o src/ciphers/multi2.o src/ciphers/noekeon.o src/ciphers/rc2.o src/ciphers/rc5.o \ |
54 #CFLAGS += -Os -DLTC_SMALL_CODE | 54 src/ciphers/rc6.o src/ciphers/safer/safer.o src/ciphers/safer/saferp.o src/ciphers/skipjack.o \ |
55 | 55 src/ciphers/twofish/twofish.o src/ciphers/xtea.o src/encauth/ccm/ccm_add_aad.o \ |
56 endif | 56 src/encauth/ccm/ccm_add_nonce.o src/encauth/ccm/ccm_done.o src/encauth/ccm/ccm_init.o \ |
57 | 57 src/encauth/ccm/ccm_memory.o src/encauth/ccm/ccm_process.o src/encauth/ccm/ccm_reset.o \ |
58 # older GCCs can't handle the "rotate with immediate" ROLc/RORc/etc macros | 58 src/encauth/ccm/ccm_test.o src/encauth/chachapoly/chacha20poly1305_add_aad.o \ |
59 # define this to help | 59 src/encauth/chachapoly/chacha20poly1305_decrypt.o src/encauth/chachapoly/chacha20poly1305_done.o \ |
60 #CFLAGS += -DLTC_NO_ROLC | 60 src/encauth/chachapoly/chacha20poly1305_encrypt.o src/encauth/chachapoly/chacha20poly1305_init.o \ |
61 | 61 src/encauth/chachapoly/chacha20poly1305_memory.o src/encauth/chachapoly/chacha20poly1305_setiv.o \ |
62 # compile for DEBUGING (required for ccmalloc checking!!!) | 62 src/encauth/chachapoly/chacha20poly1305_setiv_rfc7905.o \ |
63 #CFLAGS += -g3 -DLTC_NO_ASM | 63 src/encauth/chachapoly/chacha20poly1305_test.o src/encauth/eax/eax_addheader.o \ |
64 | 64 src/encauth/eax/eax_decrypt.o src/encauth/eax/eax_decrypt_verify_memory.o src/encauth/eax/eax_done.o \ |
65 #Output filenames for various targets. | 65 src/encauth/eax/eax_encrypt.o src/encauth/eax/eax_encrypt_authenticate_memory.o \ |
66 ifndef LIBNAME | |
67 LIBNAME=libtomcrypt.a | |
68 endif | |
69 ifndef LIBTEST | |
70 LIBTEST=libtomcrypt_prof.a | |
71 endif | |
72 LIBTEST_S=$(LIBTEST) | |
73 | |
74 HASH=hashsum | |
75 CRYPT=encrypt | |
76 SMALL=small | |
77 PROF=x86_prof | |
78 TV=tv_gen | |
79 MULTI=multi | |
80 TIMING=timing | |
81 TEST=test | |
82 | |
83 #LIBPATH-The directory for libtomcrypt to be installed to. | |
84 #INCPATH-The directory to install the header files for libtomcrypt. | |
85 #DATAPATH-The directory to install the pdf docs. | |
86 ifndef DESTDIR | |
87 DESTDIR= | |
88 endif | |
89 | |
90 ifndef LIBPATH | |
91 LIBPATH=/usr/lib | |
92 endif | |
93 ifndef INCPATH | |
94 INCPATH=/usr/include | |
95 endif | |
96 ifndef DATAPATH | |
97 DATAPATH=/usr/share/doc/libtomcrypt/pdf | |
98 endif | |
99 | |
100 #Who do we install as? | |
101 ifdef INSTALL_USER | |
102 USER=$(INSTALL_USER) | |
103 else | |
104 USER=root | |
105 endif | |
106 | |
107 ifdef INSTALL_GROUP | |
108 GROUP=$(INSTALL_GROUP) | |
109 else | |
110 GROUP=wheel | |
111 endif | |
112 | |
113 #List of objects to compile. | |
114 #START_INS | |
115 OBJECTS=src/ciphers/aes/aes_enc.o src/ciphers/aes/aes.o src/ciphers/anubis.o src/ciphers/blowfish.o \ | |
116 src/ciphers/cast5.o src/ciphers/des.o src/ciphers/kasumi.o src/ciphers/khazad.o src/ciphers/kseed.o \ | |
117 src/ciphers/multi2.o src/ciphers/noekeon.o src/ciphers/rc2.o src/ciphers/rc5.o src/ciphers/rc6.o \ | |
118 src/ciphers/safer/safer.o src/ciphers/safer/saferp.o src/ciphers/safer/safer_tab.o \ | |
119 src/ciphers/skipjack.o src/ciphers/twofish/twofish.o src/ciphers/xtea.o src/encauth/ccm/ccm_memory.o \ | |
120 src/encauth/ccm/ccm_test.o src/encauth/eax/eax_addheader.o src/encauth/eax/eax_decrypt.o \ | |
121 src/encauth/eax/eax_decrypt_verify_memory.o src/encauth/eax/eax_done.o \ | |
122 src/encauth/eax/eax_encrypt_authenticate_memory.o src/encauth/eax/eax_encrypt.o \ | |
123 src/encauth/eax/eax_init.o src/encauth/eax/eax_test.o src/encauth/gcm/gcm_add_aad.o \ | 66 src/encauth/eax/eax_init.o src/encauth/eax/eax_test.o src/encauth/gcm/gcm_add_aad.o \ |
124 src/encauth/gcm/gcm_add_iv.o src/encauth/gcm/gcm_done.o src/encauth/gcm/gcm_gf_mult.o \ | 67 src/encauth/gcm/gcm_add_iv.o src/encauth/gcm/gcm_done.o src/encauth/gcm/gcm_gf_mult.o \ |
125 src/encauth/gcm/gcm_init.o src/encauth/gcm/gcm_memory.o src/encauth/gcm/gcm_mult_h.o \ | 68 src/encauth/gcm/gcm_init.o src/encauth/gcm/gcm_memory.o src/encauth/gcm/gcm_mult_h.o \ |
126 src/encauth/gcm/gcm_process.o src/encauth/gcm/gcm_reset.o src/encauth/gcm/gcm_test.o \ | 69 src/encauth/gcm/gcm_process.o src/encauth/gcm/gcm_reset.o src/encauth/gcm/gcm_test.o \ |
127 src/encauth/ocb/ocb_decrypt.o src/encauth/ocb/ocb_decrypt_verify_memory.o \ | 70 src/encauth/ocb/ocb_decrypt.o src/encauth/ocb/ocb_decrypt_verify_memory.o \ |
128 src/encauth/ocb/ocb_done_decrypt.o src/encauth/ocb/ocb_done_encrypt.o \ | 71 src/encauth/ocb/ocb_done_decrypt.o src/encauth/ocb/ocb_done_encrypt.o src/encauth/ocb/ocb_encrypt.o \ |
129 src/encauth/ocb/ocb_encrypt_authenticate_memory.o src/encauth/ocb/ocb_encrypt.o \ | 72 src/encauth/ocb/ocb_encrypt_authenticate_memory.o src/encauth/ocb/ocb_init.o src/encauth/ocb/ocb_ntz.o \ |
130 src/encauth/ocb/ocb_init.o src/encauth/ocb/ocb_ntz.o src/encauth/ocb/ocb_shift_xor.o \ | 73 src/encauth/ocb/ocb_shift_xor.o src/encauth/ocb/ocb_test.o src/encauth/ocb/s_ocb_done.o \ |
131 src/encauth/ocb/ocb_test.o src/encauth/ocb/s_ocb_done.o src/hashes/chc/chc.o \ | 74 src/encauth/ocb3/ocb3_add_aad.o src/encauth/ocb3/ocb3_decrypt.o src/encauth/ocb3/ocb3_decrypt_last.o \ |
132 src/hashes/helper/hash_file.o src/hashes/helper/hash_filehandle.o src/hashes/helper/hash_memory.o \ | 75 src/encauth/ocb3/ocb3_decrypt_verify_memory.o src/encauth/ocb3/ocb3_done.o \ |
76 src/encauth/ocb3/ocb3_encrypt.o src/encauth/ocb3/ocb3_encrypt_authenticate_memory.o \ | |
77 src/encauth/ocb3/ocb3_encrypt_last.o src/encauth/ocb3/ocb3_init.o src/encauth/ocb3/ocb3_int_ntz.o \ | |
78 src/encauth/ocb3/ocb3_int_xor_blocks.o src/encauth/ocb3/ocb3_test.o src/hashes/blake2b.o \ | |
79 src/hashes/blake2s.o src/hashes/chc/chc.o src/hashes/helper/hash_file.o \ | |
80 src/hashes/helper/hash_filehandle.o src/hashes/helper/hash_memory.o \ | |
133 src/hashes/helper/hash_memory_multi.o src/hashes/md2.o src/hashes/md4.o src/hashes/md5.o \ | 81 src/hashes/helper/hash_memory_multi.o src/hashes/md2.o src/hashes/md4.o src/hashes/md5.o \ |
134 src/hashes/rmd128.o src/hashes/rmd160.o src/hashes/rmd256.o src/hashes/rmd320.o src/hashes/sha1.o \ | 82 src/hashes/rmd128.o src/hashes/rmd160.o src/hashes/rmd256.o src/hashes/rmd320.o src/hashes/sha1.o \ |
135 src/hashes/sha2/sha256.o src/hashes/sha2/sha512.o src/hashes/tiger.o src/hashes/whirl/whirl.o \ | 83 src/hashes/sha2/sha224.o src/hashes/sha2/sha256.o src/hashes/sha2/sha384.o src/hashes/sha2/sha512.o \ |
136 src/mac/f9/f9_done.o src/mac/f9/f9_file.o src/mac/f9/f9_init.o src/mac/f9/f9_memory.o \ | 84 src/hashes/sha2/sha512_224.o src/hashes/sha2/sha512_256.o src/hashes/sha3.o src/hashes/sha3_test.o \ |
137 src/mac/f9/f9_memory_multi.o src/mac/f9/f9_process.o src/mac/f9/f9_test.o src/mac/hmac/hmac_done.o \ | 85 src/hashes/tiger.o src/hashes/whirl/whirl.o src/mac/blake2/blake2bmac.o \ |
138 src/mac/hmac/hmac_file.o src/mac/hmac/hmac_init.o src/mac/hmac/hmac_memory.o \ | 86 src/mac/blake2/blake2bmac_file.o src/mac/blake2/blake2bmac_memory.o \ |
139 src/mac/hmac/hmac_memory_multi.o src/mac/hmac/hmac_process.o src/mac/hmac/hmac_test.o \ | 87 src/mac/blake2/blake2bmac_memory_multi.o src/mac/blake2/blake2bmac_test.o src/mac/blake2/blake2smac.o \ |
140 src/mac/omac/omac_done.o src/mac/omac/omac_file.o src/mac/omac/omac_init.o src/mac/omac/omac_memory.o \ | 88 src/mac/blake2/blake2smac_file.o src/mac/blake2/blake2smac_memory.o \ |
141 src/mac/omac/omac_memory_multi.o src/mac/omac/omac_process.o src/mac/omac/omac_test.o \ | 89 src/mac/blake2/blake2smac_memory_multi.o src/mac/blake2/blake2smac_test.o src/mac/f9/f9_done.o \ |
142 src/mac/pelican/pelican.o src/mac/pelican/pelican_memory.o src/mac/pelican/pelican_test.o \ | 90 src/mac/f9/f9_file.o src/mac/f9/f9_init.o src/mac/f9/f9_memory.o src/mac/f9/f9_memory_multi.o \ |
143 src/mac/pmac/pmac_done.o src/mac/pmac/pmac_file.o src/mac/pmac/pmac_init.o src/mac/pmac/pmac_memory.o \ | 91 src/mac/f9/f9_process.o src/mac/f9/f9_test.o src/mac/hmac/hmac_done.o src/mac/hmac/hmac_file.o \ |
92 src/mac/hmac/hmac_init.o src/mac/hmac/hmac_memory.o src/mac/hmac/hmac_memory_multi.o \ | |
93 src/mac/hmac/hmac_process.o src/mac/hmac/hmac_test.o src/mac/omac/omac_done.o src/mac/omac/omac_file.o \ | |
94 src/mac/omac/omac_init.o src/mac/omac/omac_memory.o src/mac/omac/omac_memory_multi.o \ | |
95 src/mac/omac/omac_process.o src/mac/omac/omac_test.o src/mac/pelican/pelican.o \ | |
96 src/mac/pelican/pelican_memory.o src/mac/pelican/pelican_test.o src/mac/pmac/pmac_done.o \ | |
97 src/mac/pmac/pmac_file.o src/mac/pmac/pmac_init.o src/mac/pmac/pmac_memory.o \ | |
144 src/mac/pmac/pmac_memory_multi.o src/mac/pmac/pmac_ntz.o src/mac/pmac/pmac_process.o \ | 98 src/mac/pmac/pmac_memory_multi.o src/mac/pmac/pmac_ntz.o src/mac/pmac/pmac_process.o \ |
145 src/mac/pmac/pmac_shift_xor.o src/mac/pmac/pmac_test.o src/mac/xcbc/xcbc_done.o \ | 99 src/mac/pmac/pmac_shift_xor.o src/mac/pmac/pmac_test.o src/mac/poly1305/poly1305.o \ |
100 src/mac/poly1305/poly1305_file.o src/mac/poly1305/poly1305_memory.o \ | |
101 src/mac/poly1305/poly1305_memory_multi.o src/mac/poly1305/poly1305_test.o src/mac/xcbc/xcbc_done.o \ | |
146 src/mac/xcbc/xcbc_file.o src/mac/xcbc/xcbc_init.o src/mac/xcbc/xcbc_memory.o \ | 102 src/mac/xcbc/xcbc_file.o src/mac/xcbc/xcbc_init.o src/mac/xcbc/xcbc_memory.o \ |
147 src/mac/xcbc/xcbc_memory_multi.o src/mac/xcbc/xcbc_process.o src/mac/xcbc/xcbc_test.o \ | 103 src/mac/xcbc/xcbc_memory_multi.o src/mac/xcbc/xcbc_process.o src/mac/xcbc/xcbc_test.o \ |
148 src/math/fp/ltc_ecc_fp_mulmod.o src/math/gmp_desc.o src/math/ltm_desc.o src/math/multi.o \ | 104 src/math/fp/ltc_ecc_fp_mulmod.o src/math/gmp_desc.o src/math/ltm_desc.o src/math/multi.o \ |
149 src/math/rand_prime.o src/math/tfm_desc.o src/misc/base64/base64_decode.o \ | 105 src/math/radix_to_bin.o src/math/rand_bn.o src/math/rand_prime.o src/math/tfm_desc.o src/misc/adler32.o \ |
150 src/misc/base64/base64_encode.o src/misc/burn_stack.o src/misc/crypt/crypt_argchk.o \ | 106 src/misc/base64/base64_decode.o src/misc/base64/base64_encode.o src/misc/burn_stack.o \ |
151 src/misc/crypt/crypt.o src/misc/crypt/crypt_cipher_descriptor.o src/misc/crypt/crypt_cipher_is_valid.o \ | 107 src/misc/compare_testvector.o src/misc/crc32.o src/misc/crypt/crypt.o src/misc/crypt/crypt_argchk.o \ |
152 src/misc/crypt/crypt_find_cipher_any.o src/misc/crypt/crypt_find_cipher.o \ | 108 src/misc/crypt/crypt_cipher_descriptor.o src/misc/crypt/crypt_cipher_is_valid.o \ |
153 src/misc/crypt/crypt_find_cipher_id.o src/misc/crypt/crypt_find_hash_any.o \ | 109 src/misc/crypt/crypt_constants.o src/misc/crypt/crypt_find_cipher.o \ |
154 src/misc/crypt/crypt_find_hash.o src/misc/crypt/crypt_find_hash_id.o \ | 110 src/misc/crypt/crypt_find_cipher_any.o src/misc/crypt/crypt_find_cipher_id.o \ |
155 src/misc/crypt/crypt_find_hash_oid.o src/misc/crypt/crypt_find_prng.o src/misc/crypt/crypt_fsa.o \ | 111 src/misc/crypt/crypt_find_hash.o src/misc/crypt/crypt_find_hash_any.o \ |
156 src/misc/crypt/crypt_hash_descriptor.o src/misc/crypt/crypt_hash_is_valid.o \ | 112 src/misc/crypt/crypt_find_hash_id.o src/misc/crypt/crypt_find_hash_oid.o \ |
113 src/misc/crypt/crypt_find_prng.o src/misc/crypt/crypt_fsa.o src/misc/crypt/crypt_hash_descriptor.o \ | |
114 src/misc/crypt/crypt_hash_is_valid.o src/misc/crypt/crypt_inits.o \ | |
157 src/misc/crypt/crypt_ltc_mp_descriptor.o src/misc/crypt/crypt_prng_descriptor.o \ | 115 src/misc/crypt/crypt_ltc_mp_descriptor.o src/misc/crypt/crypt_prng_descriptor.o \ |
158 src/misc/crypt/crypt_prng_is_valid.o src/misc/crypt/crypt_register_cipher.o \ | 116 src/misc/crypt/crypt_prng_is_valid.o src/misc/crypt/crypt_prng_rng_descriptor.o \ |
159 src/misc/crypt/crypt_register_hash.o src/misc/crypt/crypt_register_prng.o \ | 117 src/misc/crypt/crypt_register_all_ciphers.o src/misc/crypt/crypt_register_all_hashes.o \ |
118 src/misc/crypt/crypt_register_all_prngs.o src/misc/crypt/crypt_register_cipher.o \ | |
119 src/misc/crypt/crypt_register_hash.o src/misc/crypt/crypt_register_prng.o src/misc/crypt/crypt_sizes.o \ | |
160 src/misc/crypt/crypt_unregister_cipher.o src/misc/crypt/crypt_unregister_hash.o \ | 120 src/misc/crypt/crypt_unregister_cipher.o src/misc/crypt/crypt_unregister_hash.o \ |
161 src/misc/crypt/crypt_unregister_prng.o src/misc/error_to_string.o src/misc/pkcs5/pkcs_5_1.o \ | 121 src/misc/crypt/crypt_unregister_prng.o src/misc/error_to_string.o src/misc/hkdf/hkdf.o \ |
162 src/misc/pkcs5/pkcs_5_2.o src/misc/zeromem.o src/modes/cbc/cbc_decrypt.o src/modes/cbc/cbc_done.o \ | 122 src/misc/hkdf/hkdf_test.o src/misc/mem_neq.o src/misc/pk_get_oid.o src/misc/pkcs5/pkcs_5_1.o \ |
163 src/modes/cbc/cbc_encrypt.o src/modes/cbc/cbc_getiv.o src/modes/cbc/cbc_setiv.o \ | 123 src/misc/pkcs5/pkcs_5_2.o src/misc/pkcs5/pkcs_5_test.o src/misc/zeromem.o src/modes/cbc/cbc_decrypt.o \ |
164 src/modes/cbc/cbc_start.o src/modes/cfb/cfb_decrypt.o src/modes/cfb/cfb_done.o \ | 124 src/modes/cbc/cbc_done.o src/modes/cbc/cbc_encrypt.o src/modes/cbc/cbc_getiv.o \ |
165 src/modes/cfb/cfb_encrypt.o src/modes/cfb/cfb_getiv.o src/modes/cfb/cfb_setiv.o \ | 125 src/modes/cbc/cbc_setiv.o src/modes/cbc/cbc_start.o src/modes/cfb/cfb_decrypt.o \ |
166 src/modes/cfb/cfb_start.o src/modes/ctr/ctr_decrypt.o src/modes/ctr/ctr_done.o \ | 126 src/modes/cfb/cfb_done.o src/modes/cfb/cfb_encrypt.o src/modes/cfb/cfb_getiv.o \ |
167 src/modes/ctr/ctr_encrypt.o src/modes/ctr/ctr_getiv.o src/modes/ctr/ctr_setiv.o \ | 127 src/modes/cfb/cfb_setiv.o src/modes/cfb/cfb_start.o src/modes/ctr/ctr_decrypt.o \ |
168 src/modes/ctr/ctr_start.o src/modes/ctr/ctr_test.o src/modes/ecb/ecb_decrypt.o src/modes/ecb/ecb_done.o \ | 128 src/modes/ctr/ctr_done.o src/modes/ctr/ctr_encrypt.o src/modes/ctr/ctr_getiv.o \ |
169 src/modes/ecb/ecb_encrypt.o src/modes/ecb/ecb_start.o src/modes/f8/f8_decrypt.o src/modes/f8/f8_done.o \ | 129 src/modes/ctr/ctr_setiv.o src/modes/ctr/ctr_start.o src/modes/ctr/ctr_test.o \ |
170 src/modes/f8/f8_encrypt.o src/modes/f8/f8_getiv.o src/modes/f8/f8_setiv.o src/modes/f8/f8_start.o \ | 130 src/modes/ecb/ecb_decrypt.o src/modes/ecb/ecb_done.o src/modes/ecb/ecb_encrypt.o \ |
171 src/modes/f8/f8_test_mode.o src/modes/lrw/lrw_decrypt.o src/modes/lrw/lrw_done.o \ | 131 src/modes/ecb/ecb_start.o src/modes/f8/f8_decrypt.o src/modes/f8/f8_done.o src/modes/f8/f8_encrypt.o \ |
172 src/modes/lrw/lrw_encrypt.o src/modes/lrw/lrw_getiv.o src/modes/lrw/lrw_process.o \ | 132 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 \ |
173 src/modes/lrw/lrw_setiv.o src/modes/lrw/lrw_start.o src/modes/lrw/lrw_test.o \ | 133 src/modes/lrw/lrw_decrypt.o src/modes/lrw/lrw_done.o src/modes/lrw/lrw_encrypt.o \ |
174 src/modes/ofb/ofb_decrypt.o src/modes/ofb/ofb_done.o src/modes/ofb/ofb_encrypt.o \ | 134 src/modes/lrw/lrw_getiv.o src/modes/lrw/lrw_process.o src/modes/lrw/lrw_setiv.o \ |
175 src/modes/ofb/ofb_getiv.o src/modes/ofb/ofb_setiv.o src/modes/ofb/ofb_start.o \ | 135 src/modes/lrw/lrw_start.o src/modes/lrw/lrw_test.o src/modes/ofb/ofb_decrypt.o src/modes/ofb/ofb_done.o \ |
176 src/modes/xts/xts_decrypt.o src/modes/xts/xts_done.o src/modes/xts/xts_encrypt.o \ | 136 src/modes/ofb/ofb_encrypt.o src/modes/ofb/ofb_getiv.o src/modes/ofb/ofb_setiv.o \ |
177 src/modes/xts/xts_init.o src/modes/xts/xts_mult_x.o src/modes/xts/xts_test.o \ | 137 src/modes/ofb/ofb_start.o src/modes/xts/xts_decrypt.o src/modes/xts/xts_done.o \ |
178 src/pk/asn1/der/bit/der_decode_bit_string.o src/pk/asn1/der/bit/der_encode_bit_string.o \ | 138 src/modes/xts/xts_encrypt.o src/modes/xts/xts_init.o src/modes/xts/xts_mult_x.o \ |
179 src/pk/asn1/der/bit/der_length_bit_string.o src/pk/asn1/der/boolean/der_decode_boolean.o \ | 139 src/modes/xts/xts_test.o src/pk/asn1/der/bit/der_decode_bit_string.o \ |
180 src/pk/asn1/der/boolean/der_encode_boolean.o src/pk/asn1/der/boolean/der_length_boolean.o \ | 140 src/pk/asn1/der/bit/der_decode_raw_bit_string.o src/pk/asn1/der/bit/der_encode_bit_string.o \ |
181 src/pk/asn1/der/choice/der_decode_choice.o src/pk/asn1/der/ia5/der_decode_ia5_string.o \ | 141 src/pk/asn1/der/bit/der_encode_raw_bit_string.o src/pk/asn1/der/bit/der_length_bit_string.o \ |
182 src/pk/asn1/der/ia5/der_encode_ia5_string.o src/pk/asn1/der/ia5/der_length_ia5_string.o \ | 142 src/pk/asn1/der/boolean/der_decode_boolean.o src/pk/asn1/der/boolean/der_encode_boolean.o \ |
183 src/pk/asn1/der/integer/der_decode_integer.o src/pk/asn1/der/integer/der_encode_integer.o \ | 143 src/pk/asn1/der/boolean/der_length_boolean.o src/pk/asn1/der/choice/der_decode_choice.o \ |
184 src/pk/asn1/der/integer/der_length_integer.o \ | 144 src/pk/asn1/der/generalizedtime/der_decode_generalizedtime.o \ |
145 src/pk/asn1/der/generalizedtime/der_encode_generalizedtime.o \ | |
146 src/pk/asn1/der/generalizedtime/der_length_generalizedtime.o \ | |
147 src/pk/asn1/der/ia5/der_decode_ia5_string.o src/pk/asn1/der/ia5/der_encode_ia5_string.o \ | |
148 src/pk/asn1/der/ia5/der_length_ia5_string.o src/pk/asn1/der/integer/der_decode_integer.o \ | |
149 src/pk/asn1/der/integer/der_encode_integer.o src/pk/asn1/der/integer/der_length_integer.o \ | |
185 src/pk/asn1/der/object_identifier/der_decode_object_identifier.o \ | 150 src/pk/asn1/der/object_identifier/der_decode_object_identifier.o \ |
186 src/pk/asn1/der/object_identifier/der_encode_object_identifier.o \ | 151 src/pk/asn1/der/object_identifier/der_encode_object_identifier.o \ |
187 src/pk/asn1/der/object_identifier/der_length_object_identifier.o \ | 152 src/pk/asn1/der/object_identifier/der_length_object_identifier.o \ |
188 src/pk/asn1/der/octet/der_decode_octet_string.o src/pk/asn1/der/octet/der_encode_octet_string.o \ | 153 src/pk/asn1/der/octet/der_decode_octet_string.o src/pk/asn1/der/octet/der_encode_octet_string.o \ |
189 src/pk/asn1/der/octet/der_length_octet_string.o \ | 154 src/pk/asn1/der/octet/der_length_octet_string.o \ |
191 src/pk/asn1/der/printable_string/der_encode_printable_string.o \ | 156 src/pk/asn1/der/printable_string/der_encode_printable_string.o \ |
192 src/pk/asn1/der/printable_string/der_length_printable_string.o \ | 157 src/pk/asn1/der/printable_string/der_length_printable_string.o \ |
193 src/pk/asn1/der/sequence/der_decode_sequence_ex.o \ | 158 src/pk/asn1/der/sequence/der_decode_sequence_ex.o \ |
194 src/pk/asn1/der/sequence/der_decode_sequence_flexi.o \ | 159 src/pk/asn1/der/sequence/der_decode_sequence_flexi.o \ |
195 src/pk/asn1/der/sequence/der_decode_sequence_multi.o \ | 160 src/pk/asn1/der/sequence/der_decode_sequence_multi.o \ |
161 src/pk/asn1/der/sequence/der_decode_subject_public_key_info.o \ | |
196 src/pk/asn1/der/sequence/der_encode_sequence_ex.o \ | 162 src/pk/asn1/der/sequence/der_encode_sequence_ex.o \ |
197 src/pk/asn1/der/sequence/der_encode_sequence_multi.o src/pk/asn1/der/sequence/der_length_sequence.o \ | 163 src/pk/asn1/der/sequence/der_encode_sequence_multi.o \ |
198 src/pk/asn1/der/sequence/der_sequence_free.o src/pk/asn1/der/set/der_encode_set.o \ | 164 src/pk/asn1/der/sequence/der_encode_subject_public_key_info.o \ |
165 src/pk/asn1/der/sequence/der_length_sequence.o src/pk/asn1/der/sequence/der_sequence_free.o \ | |
166 src/pk/asn1/der/sequence/der_sequence_shrink.o src/pk/asn1/der/set/der_encode_set.o \ | |
199 src/pk/asn1/der/set/der_encode_setof.o src/pk/asn1/der/short_integer/der_decode_short_integer.o \ | 167 src/pk/asn1/der/set/der_encode_setof.o src/pk/asn1/der/short_integer/der_decode_short_integer.o \ |
200 src/pk/asn1/der/short_integer/der_encode_short_integer.o \ | 168 src/pk/asn1/der/short_integer/der_encode_short_integer.o \ |
201 src/pk/asn1/der/short_integer/der_length_short_integer.o src/pk/asn1/der/utctime/der_decode_utctime.o \ | 169 src/pk/asn1/der/short_integer/der_length_short_integer.o \ |
202 src/pk/asn1/der/utctime/der_encode_utctime.o src/pk/asn1/der/utctime/der_length_utctime.o \ | 170 src/pk/asn1/der/teletex_string/der_decode_teletex_string.o \ |
203 src/pk/asn1/der/utf8/der_decode_utf8_string.o src/pk/asn1/der/utf8/der_encode_utf8_string.o \ | 171 src/pk/asn1/der/teletex_string/der_length_teletex_string.o \ |
204 src/pk/asn1/der/utf8/der_length_utf8_string.o src/pk/dsa/dsa_decrypt_key.o \ | 172 src/pk/asn1/der/utctime/der_decode_utctime.o src/pk/asn1/der/utctime/der_encode_utctime.o \ |
205 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 \ | 173 src/pk/asn1/der/utctime/der_length_utctime.o src/pk/asn1/der/utf8/der_decode_utf8_string.o \ |
206 src/pk/dsa/dsa_make_key.o src/pk/dsa/dsa_shared_secret.o src/pk/dsa/dsa_sign_hash.o \ | 174 src/pk/asn1/der/utf8/der_encode_utf8_string.o src/pk/asn1/der/utf8/der_length_utf8_string.o \ |
207 src/pk/dsa/dsa_verify_hash.o src/pk/dsa/dsa_verify_key.o src/pk/ecc/ecc_ansi_x963_export.o \ | 175 src/pk/dh/dh.o src/pk/dh/dh_check_pubkey.o src/pk/dh/dh_export.o src/pk/dh/dh_export_key.o \ |
208 src/pk/ecc/ecc_ansi_x963_import.o src/pk/ecc/ecc.o src/pk/ecc/ecc_decrypt_key.o \ | 176 src/pk/dh/dh_free.o src/pk/dh/dh_generate_key.o src/pk/dh/dh_import.o src/pk/dh/dh_set.o \ |
209 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 \ | 177 src/pk/dh/dh_set_pg_dhparam.o src/pk/dh/dh_shared_secret.o src/pk/dsa/dsa_decrypt_key.o \ |
210 src/pk/ecc/ecc_import.o src/pk/ecc/ecc_make_key.o src/pk/ecc/ecc_shared_secret.o \ | 178 src/pk/dsa/dsa_encrypt_key.o src/pk/dsa/dsa_export.o src/pk/dsa/dsa_free.o \ |
211 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 \ | 179 src/pk/dsa/dsa_generate_key.o src/pk/dsa/dsa_generate_pqg.o src/pk/dsa/dsa_import.o \ |
180 src/pk/dsa/dsa_make_key.o src/pk/dsa/dsa_set.o src/pk/dsa/dsa_set_pqg_dsaparam.o \ | |
181 src/pk/dsa/dsa_shared_secret.o src/pk/dsa/dsa_sign_hash.o src/pk/dsa/dsa_verify_hash.o \ | |
182 src/pk/dsa/dsa_verify_key.o src/pk/ecc/ecc.o src/pk/ecc/ecc_ansi_x963_export.o \ | |
183 src/pk/ecc/ecc_ansi_x963_import.o src/pk/ecc/ecc_decrypt_key.o src/pk/ecc/ecc_encrypt_key.o \ | |
184 src/pk/ecc/ecc_export.o src/pk/ecc/ecc_free.o src/pk/ecc/ecc_get_size.o src/pk/ecc/ecc_import.o \ | |
185 src/pk/ecc/ecc_make_key.o src/pk/ecc/ecc_shared_secret.o src/pk/ecc/ecc_sign_hash.o \ | |
186 src/pk/ecc/ecc_sizes.o src/pk/ecc/ecc_test.o src/pk/ecc/ecc_verify_hash.o \ | |
212 src/pk/ecc/ltc_ecc_is_valid_idx.o src/pk/ecc/ltc_ecc_map.o src/pk/ecc/ltc_ecc_mul2add.o \ | 187 src/pk/ecc/ltc_ecc_is_valid_idx.o src/pk/ecc/ltc_ecc_map.o src/pk/ecc/ltc_ecc_mul2add.o \ |
213 src/pk/ecc/ltc_ecc_mulmod.o src/pk/ecc/ltc_ecc_mulmod_timing.o src/pk/ecc/ltc_ecc_points.o \ | 188 src/pk/ecc/ltc_ecc_mulmod.o src/pk/ecc/ltc_ecc_mulmod_timing.o src/pk/ecc/ltc_ecc_points.o \ |
214 src/pk/ecc/ltc_ecc_projective_add_point.o src/pk/ecc/ltc_ecc_projective_dbl_point.o \ | 189 src/pk/ecc/ltc_ecc_projective_add_point.o src/pk/ecc/ltc_ecc_projective_dbl_point.o \ |
215 src/pk/katja/katja_decrypt_key.o src/pk/katja/katja_encrypt_key.o src/pk/katja/katja_export.o \ | 190 src/pk/katja/katja_decrypt_key.o src/pk/katja/katja_encrypt_key.o src/pk/katja/katja_export.o \ |
216 src/pk/katja/katja_exptmod.o src/pk/katja/katja_free.o src/pk/katja/katja_import.o \ | 191 src/pk/katja/katja_exptmod.o src/pk/katja/katja_free.o src/pk/katja/katja_import.o \ |
217 src/pk/katja/katja_make_key.o src/pk/pkcs1/pkcs_1_i2osp.o src/pk/pkcs1/pkcs_1_mgf1.o \ | 192 src/pk/katja/katja_make_key.o src/pk/pkcs1/pkcs_1_i2osp.o src/pk/pkcs1/pkcs_1_mgf1.o \ |
218 src/pk/pkcs1/pkcs_1_oaep_decode.o src/pk/pkcs1/pkcs_1_oaep_encode.o src/pk/pkcs1/pkcs_1_os2ip.o \ | 193 src/pk/pkcs1/pkcs_1_oaep_decode.o src/pk/pkcs1/pkcs_1_oaep_encode.o src/pk/pkcs1/pkcs_1_os2ip.o \ |
219 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 \ | 194 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 \ |
220 src/pk/pkcs1/pkcs_1_v1_5_encode.o src/pk/rsa/rsa_decrypt_key.o src/pk/rsa/rsa_encrypt_key.o \ | 195 src/pk/pkcs1/pkcs_1_v1_5_encode.o src/pk/rsa/rsa_decrypt_key.o src/pk/rsa/rsa_encrypt_key.o \ |
221 src/pk/rsa/rsa_export.o src/pk/rsa/rsa_exptmod.o src/pk/rsa/rsa_free.o src/pk/rsa/rsa_import.o \ | 196 src/pk/rsa/rsa_export.o src/pk/rsa/rsa_exptmod.o src/pk/rsa/rsa_free.o src/pk/rsa/rsa_get_size.o \ |
222 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 \ | 197 src/pk/rsa/rsa_import.o src/pk/rsa/rsa_import_pkcs8.o src/pk/rsa/rsa_import_x509.o \ |
198 src/pk/rsa/rsa_make_key.o src/pk/rsa/rsa_set.o src/pk/rsa/rsa_sign_hash.o \ | |
199 src/pk/rsa/rsa_sign_saltlen_get.o src/pk/rsa/rsa_verify_hash.o src/prngs/chacha20.o src/prngs/fortuna.o \ | |
223 src/prngs/rc4.o src/prngs/rng_get_bytes.o src/prngs/rng_make_prng.o src/prngs/sober128.o \ | 200 src/prngs/rc4.o src/prngs/rng_get_bytes.o src/prngs/rng_make_prng.o src/prngs/sober128.o \ |
224 src/prngs/sprng.o src/prngs/yarrow.o | 201 src/prngs/sprng.o src/prngs/yarrow.o src/stream/chacha/chacha_crypt.o src/stream/chacha/chacha_done.o \ |
225 | 202 src/stream/chacha/chacha_ivctr32.o src/stream/chacha/chacha_ivctr64.o \ |
226 HEADERS=src/headers/tomcrypt_cfg.h src/headers/tomcrypt_mac.h src/headers/tomcrypt_macros.h \ | 203 src/stream/chacha/chacha_keystream.o src/stream/chacha/chacha_setup.o src/stream/chacha/chacha_test.o \ |
227 src/headers/tomcrypt_custom.h src/headers/tomcrypt_argchk.h src/headers/tomcrypt_cipher.h \ | 204 src/stream/rc4/rc4_stream.o src/stream/rc4/rc4_test.o src/stream/sober128/sober128_stream.o \ |
228 src/headers/tomcrypt_pk.h src/headers/tomcrypt_hash.h src/headers/tomcrypt_math.h \ | 205 src/stream/sober128/sober128_test.o |
229 src/headers/tomcrypt_misc.h src/headers/tomcrypt.h src/headers/tomcrypt_pkcs.h \ | 206 |
230 src/headers/tomcrypt_prng.h testprof/tomcrypt_test.h | 207 #List of test objects to compile (all goes to libtomcrypt_prof.a) |
231 | 208 TOBJECTS=tests/base64_test.o tests/cipher_hash_test.o tests/common.o tests/der_test.o tests/dh_test.o \ |
232 #END_INS | 209 tests/dsa_test.o tests/ecc_test.o tests/file_test.o tests/katja_test.o tests/mac_test.o tests/misc_test.o \ |
233 | 210 tests/modes_test.o tests/mpi_test.o tests/multi_test.o tests/no_prng.o tests/pkcs_1_eme_test.o \ |
234 TESTOBJECTS=demos/test.o | 211 tests/pkcs_1_emsa_test.o tests/pkcs_1_oaep_test.o tests/pkcs_1_pss_test.o tests/pkcs_1_test.o \ |
235 HASHOBJECTS=demos/hashsum.o | 212 tests/prng_test.o tests/rotate_test.o tests/rsa_test.o tests/store_test.o tests/test.o |
236 CRYPTOBJECTS=demos/encrypt.o | 213 |
237 SMALLOBJECTS=demos/small.o | 214 #The following headers will be installed by "make install" |
238 TVS=demos/tv_gen.o | 215 HEADERS=src/headers/tomcrypt.h src/headers/tomcrypt_argchk.h src/headers/tomcrypt_cfg.h \ |
239 MULTIS=demos/multi.o | 216 src/headers/tomcrypt_cipher.h src/headers/tomcrypt_custom.h src/headers/tomcrypt_hash.h \ |
240 TIMINGS=demos/timing.o | 217 src/headers/tomcrypt_mac.h src/headers/tomcrypt_macros.h src/headers/tomcrypt_math.h \ |
241 TESTS=demos/test.o | 218 src/headers/tomcrypt_misc.h src/headers/tomcrypt_pk.h src/headers/tomcrypt_pkcs.h \ |
242 | 219 src/headers/tomcrypt_prng.h |
243 #Files left over from making the crypt.pdf. | 220 |
244 LEFTOVERS=*.dvi *.log *.aux *.toc *.idx *.ilg *.ind *.out | 221 #The default rule for make builds the libtomcrypt.a library (static) |
245 | 222 default: $(LIBMAIN_S) |
246 #Compressed filenames | 223 |
247 COMPRESSED=crypt-$(VERSION).tar.bz2 crypt-$(VERSION).zip | 224 #SPECIAL: AES comes in two flavours - enc+dec and enc-only |
248 | |
249 #The default rule for make builds the libtomcrypt library. | |
250 default:library | |
251 | |
252 #ciphers come in two flavours... enc+dec and enc | |
253 src/ciphers/aes/aes_enc.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c | 225 src/ciphers/aes/aes_enc.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c |
254 $(CC) $(CFLAGS) -DENCRYPT_ONLY -c $< -o src/ciphers/aes/aes_enc.o | 226 $(CC) $(LTC_CFLAGS) -DENCRYPT_ONLY -c src/ciphers/aes/aes.c -o src/ciphers/aes/aes_enc.o |
255 | 227 |
256 #These are the rules to make certain object files. | 228 #SPECIAL: these are the rules to make certain object files |
257 src/ciphers/aes/aes.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c | 229 src/ciphers/aes/aes.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c |
258 src/ciphers/twofish/twofish.o: src/ciphers/twofish/twofish.c src/ciphers/twofish/twofish_tab.c | 230 src/ciphers/twofish/twofish.o: src/ciphers/twofish/twofish.c src/ciphers/twofish/twofish_tab.c |
259 src/hashes/whirl/whirl.o: src/hashes/whirl/whirl.c src/hashes/whirl/whirltab.c | 231 src/hashes/whirl/whirl.o: src/hashes/whirl/whirl.c src/hashes/whirl/whirltab.c |
260 src/hashes/sha2/sha512.o: src/hashes/sha2/sha512.c src/hashes/sha2/sha384.c | 232 src/hashes/sha2/sha512.o: src/hashes/sha2/sha512.c src/hashes/sha2/sha384.c |
233 src/hashes/sha2/sha512_224.o: src/hashes/sha2/sha512.c src/hashes/sha2/sha512_224.c | |
234 src/hashes/sha2/sha512_256.o: src/hashes/sha2/sha512.c src/hashes/sha2/sha512_256.c | |
261 src/hashes/sha2/sha256.o: src/hashes/sha2/sha256.c src/hashes/sha2/sha224.c | 235 src/hashes/sha2/sha256.o: src/hashes/sha2/sha256.c src/hashes/sha2/sha224.c |
262 | 236 |
263 #This rule makes the libtomcrypt library. | 237 #Dependencies on *.h |
264 library: $(LIBNAME) | |
265 | |
266 $(OBJECTS): $(HEADERS) | 238 $(OBJECTS): $(HEADERS) |
267 | 239 $(TOBJECTS): $(HEADERS) tests/tomcrypt_test.h |
268 testprof/$(LIBTEST): | 240 |
269 cd testprof ; CFLAGS="$(CFLAGS)" LIBTEST_S=$(LIBTEST_S) $(MAKE) | 241 #This is necessary for compatibility with BSD make (namely on OpenBSD) |
270 | 242 .SUFFIXES: .o .c |
271 $(LIBNAME): $(OBJECTS) | 243 .c.o: |
272 $(AR) $(ARFLAGS) $@ $(OBJECTS) | 244 $(CC) $(LTC_CFLAGS) -c $< -o $@ |
245 | |
246 #Create libtomcrypt.a | |
247 $(LIBMAIN_S): $(OBJECTS) | |
248 $(AR) $(ARFLAGS) $@ $(OBJECTS) | |
273 $(RANLIB) $@ | 249 $(RANLIB) $@ |
274 | 250 |
275 #This rule makes the hash program included with libtomcrypt | 251 #Demo tools/utilities |
276 hashsum: library $(HASHOBJECTS) | 252 hashsum: demos/hashsum.o $(LIBMAIN_S) |
277 $(CC) $(HASHOBJECTS) $(LIBNAME) $(EXTRALIBS) -o $(HASH) $(WARN) | 253 $(CC) demos/hashsum.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@ |
278 | 254 ltcrypt: demos/ltcrypt.o $(LIBMAIN_S) |
279 #makes the crypt program | 255 $(CC) demos/ltcrypt.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@ |
280 crypt: library $(CRYPTOBJECTS) | 256 small: demos/small.o $(LIBMAIN_S) |
281 $(CC) $(CRYPTOBJECTS) $(LIBNAME) $(EXTRALIBS) -o $(CRYPT) $(WARN) | 257 $(CC) demos/small.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@ |
282 | 258 tv_gen: demos/tv_gen.o $(LIBMAIN_S) |
283 #makes the small program | 259 $(CC) demos/tv_gen.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@ |
284 small: library $(SMALLOBJECTS) | 260 sizes: demos/sizes.o $(LIBMAIN_S) |
285 $(CC) $(SMALLOBJECTS) $(LIBNAME) $(EXTRALIBS) -o $(SMALL) $(WARN) | 261 $(CC) demos/sizes.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@ |
286 | 262 constants: demos/constants.o $(LIBMAIN_S) |
287 tv_gen: library $(TVS) | 263 $(CC) demos/constants.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@ |
288 $(CC) $(LDFLAGS) $(TVS) $(LIBNAME) $(EXTRALIBS) -o $(TV) | 264 timing: demos/timing.o $(LIBMAIN_S) |
289 | 265 $(CC) demos/timing.o $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@ |
290 multi: library $(MULTIS) | 266 |
291 $(CC) $(MULTIS) $(LIBNAME) $(EXTRALIBS) -o $(MULTI) | 267 #Tests |
292 | 268 test: $(TOBJECTS) $(LIBMAIN_S) |
293 timing: library testprof/$(LIBTEST) $(TIMINGS) | 269 $(CC) $(TOBJECTS) $(LIBMAIN_S) $(LTC_LDFLAGS) -o $@ |
294 $(CC) $(LDFLAGS) $(TIMINGS) testprof/$(LIBTEST) $(LIBNAME) $(EXTRALIBS) -o $(TIMING) | 270 @echo "NOTICE: start the tests by: ./test" |
295 | 271 |
296 test: library testprof/$(LIBTEST) $(TESTS) | 272 all: $(LIBMAIN_S) hashsum ltcrypt small tv_gen sizes constants timing test |
297 $(CC) $(LDFLAGS) $(TESTS) testprof/$(LIBTEST) $(LIBNAME) $(EXTRALIBS) -o $(TEST) | 273 |
298 | 274 #NOTE: this makefile works also on cygwin, thus we need to delete *.exe |
299 #This rule installs the library and the header files. This must be run | |
300 #as root in order to have a high enough permission to write to the correct | |
301 #directories and to set the owner and group to root. | |
302 ifndef NODOCS | |
303 install: library docs | |
304 else | |
305 install: library | |
306 endif | |
307 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH) | |
308 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH) | |
309 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(DATAPATH) | |
310 install -g $(GROUP) -o $(USER) $(LIBNAME) $(DESTDIR)$(LIBPATH) | |
311 install -g $(GROUP) -o $(USER) $(HEADERS) $(DESTDIR)$(INCPATH) | |
312 ifndef NODOCS | |
313 install -g $(GROUP) -o $(USER) doc/crypt.pdf $(DESTDIR)$(DATAPATH) | |
314 endif | |
315 | |
316 install_test: testprof/$(LIBTEST) | |
317 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH) | |
318 install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH) | |
319 install -g $(GROUP) -o $(USER) testprof/$(LIBTEST) $(DESTDIR)$(LIBPATH) | |
320 | |
321 profile: | |
322 CFLAGS="$(CFLAGS) -fprofile-generate" $(MAKE) timing EXTRALIBS="$(EXTRALIBS) -lgcov" | |
323 ./timing | |
324 rm -f timing `find . -type f | grep [.][ao] | xargs` | |
325 CFLAGS="$(CFLAGS) -fprofile-use" $(MAKE) timing EXTRALIBS="$(EXTRALIBS) -lgcov" | |
326 | |
327 | |
328 #This rule cleans the source tree of all compiled code, not including the pdf | |
329 #documentation. | |
330 clean: | 275 clean: |
331 -rm -f $(OBJECTS) | 276 -@rm -f $(OBJECTS) $(TOBJECTS) |
332 -rm -f libtomcrypt.a | 277 -@rm -f $(LIBMAIN_S) |
333 | 278 -@rm -f demos/*.o *_tv.txt |
334 #build the doxy files (requires Doxygen, tetex and patience) | 279 -@rm -f test constants sizes tv_gen hashsum ltcrypt small timing |
335 doxy: | 280 -@rm -f test.exe constants.exe sizes.exe tv_gen.exe hashsum.exe ltcrypt.exe small.exe timing.exe |
336 doxygen | 281 |
337 cd doc/doxygen/latex ; ${MAKE} ; mv -f refman.pdf ../../. | 282 #Install the library + headers |
338 echo The huge doxygen PDF should be available as doc/refman.pdf | 283 install: $(LIBMAIN_S) $(HEADERS) |
339 | 284 @mkdir -p $(DESTDIR)$(INCPATH) $(DESTDIR)$(LIBPATH)/pkgconfig |
340 #This builds the crypt.pdf file. Note that the rm -f *.pdf has been removed | 285 @cp $(LIBMAIN_S) $(DESTDIR)$(LIBPATH)/ |
341 #from the clean command! This is because most people would like to keep the | 286 @cp $(HEADERS) $(DESTDIR)$(INCPATH)/ |
342 #nice pre-compiled crypt.pdf that comes with libtomcrypt! We only need to | 287 @sed -e 's,^prefix=.*,prefix=$(PREFIX),' -e 's,^Version:.*,Version: $(VERSION),' libtomcrypt.pc.in > $(DESTDIR)$(LIBPATH)/pkgconfig/libtomcrypt.pc |
343 #delete it if we are rebuilding it. | 288 |
344 docs: crypt.tex | 289 #Install useful tools |
345 rm -f doc/crypt.pdf $(LEFTOVERS) | 290 install_bins: hashsum |
346 echo "hello" > crypt.ind | 291 @mkdir -p $(DESTDIR)$(BINPATH) |
347 latex crypt > /dev/null | 292 @cp hashsum $(DESTDIR)$(BINPATH)/ |
348 latex crypt > /dev/null | 293 |
349 makeindex crypt.idx > /dev/null | 294 #Install documentation |
350 perl fixupind.pl | 295 install_docs: doc/crypt.pdf |
351 latex crypt > /dev/null | 296 @mkdir -p $(DESTDIR)$(DATAPATH) |
352 dvipdf crypt | 297 @cp doc/crypt.pdf $(DESTDIR)$(DATAPATH)/ |
353 mv -ivf crypt.pdf doc/crypt.pdf | |
354 rm -f $(LEFTOVERS) | |
355 | |
356 docdvi: crypt.tex | |
357 echo hello > crypt.ind | |
358 latex crypt > /dev/null | |
359 latex crypt > /dev/null | |
360 makeindex crypt.idx | |
361 perl fixupind.pl | |
362 latex crypt > /dev/null | |
363 latex crypt > /dev/null | |
364 | |
365 #zipup the project (take that!) | |
366 no_oops: clean | |
367 cd .. ; cvs commit | |
368 echo Scanning for scratch/dirty files | |
369 find . -type f | grep -v CVS | xargs -n 1 bash mess.sh | |
370 | |
371 zipup: no_oops docs | |
372 cd .. ; rm -rf crypt* libtomcrypt-$(VERSION) ; mkdir libtomcrypt-$(VERSION) ; \ | |
373 cp -R ./libtomcrypt/* ./libtomcrypt-$(VERSION)/ ; \ | |
374 cd libtomcrypt-$(VERSION) ; rm -rf `find . -type d | grep CVS | xargs` ; cd .. ; \ | |
375 tar -cjvf crypt-$(VERSION).tar.bz2 libtomcrypt-$(VERSION) ; \ | |
376 zip -9r crypt-$(VERSION).zip libtomcrypt-$(VERSION) ; \ | |
377 gpg -b -a crypt-$(VERSION).tar.bz2 ; gpg -b -a crypt-$(VERSION).zip ; \ | |
378 mv -fv crypt* ~ ; rm -rf libtomcrypt-$(VERSION) | |
379 | |
380 | |
381 # $Source$ */ | |
382 # $Revision$ */ | |
383 # $Date$ */ |