3
|
1 # MAKEFILE for linux GCC |
|
2 # |
|
3 # Tom St Denis |
|
4 # Modified by Clay Culver |
|
5 # |
|
6 # NOTE: This should later be replaced by autoconf/automake scripts, but for |
|
7 # the time being this is actually pretty clean. The only ugly part is |
|
8 # handling CFLAGS so that the x86 specific optimizations don't break |
|
9 # a build. This is easy to remedy though, for those that have problems. |
|
10 |
|
11 # The version |
|
12 VERSION=0.95 |
|
13 |
|
14 #ch1-01-1 |
|
15 # Compiler and Linker Names |
|
16 #CC=gcc |
|
17 #LD=ld |
|
18 |
|
19 # Archiver [makes .a files] |
|
20 #AR=ar |
|
21 #ARFLAGS=r |
|
22 #ch1-01-1 |
|
23 |
|
24 #ch1-01-3 |
|
25 # Compilation flags. Note the += does not write over the user's CFLAGS! |
|
26 CFLAGS += -c -I./ -Wall -Wsign-compare -W -Wshadow |
|
27 # -Werror |
|
28 |
|
29 # optimize for SPEED |
|
30 #CFLAGS += -O3 -funroll-loops |
|
31 |
|
32 #add -fomit-frame-pointer. v3.2 is buggy for certain platforms! |
|
33 #CFLAGS += -fomit-frame-pointer |
|
34 |
|
35 # optimize for SIZE |
|
36 CFLAGS += -Os |
|
37 |
|
38 # compile for DEBUGING |
|
39 #CFLAGS += -g3 |
|
40 #ch1-01-3 |
|
41 |
|
42 #These flags control how the library gets built. |
|
43 |
|
44 #Output filenames for various targets. |
|
45 LIBNAME=libtomcrypt.a |
|
46 TEST=test |
|
47 HASH=hashsum |
|
48 CRYPT=encrypt |
|
49 SMALL=small |
|
50 PROF=x86_prof |
|
51 TV=tv_gen |
|
52 |
|
53 #LIBPATH-The directory for libtomcrypt to be installed to. |
|
54 #INCPATH-The directory to install the header files for libtomcrypt. |
|
55 #DATAPATH-The directory to install the pdf docs. |
|
56 DESTDIR= |
|
57 LIBPATH=/usr/lib |
|
58 INCPATH=/usr/include |
|
59 DATAPATH=/usr/share/doc/libtomcrypt/pdf |
|
60 |
|
61 #List of objects to compile. |
|
62 |
|
63 #Leave MPI built-in or force developer to link against libtommath? |
|
64 MPIOBJECT=mpi.o |
|
65 |
|
66 OBJECTS=keyring.o gf.o strings.o base64.o \ |
|
67 \ |
|
68 crypt.o crypt_find_cipher.o crypt_find_hash_any.o \ |
|
69 crypt_hash_is_valid.o crypt_register_hash.o crypt_unregister_prng.o \ |
|
70 crypt_argchk.o crypt_find_cipher_any.o crypt_find_hash_id.o \ |
|
71 crypt_prng_descriptor.o crypt_register_prng.o crypt_cipher_descriptor.o \ |
|
72 crypt_find_cipher_id.o crypt_find_prng.o crypt_prng_is_valid.o \ |
|
73 crypt_unregister_cipher.o crypt_cipher_is_valid.o crypt_find_hash.o \ |
|
74 crypt_hash_descriptor.o crypt_register_cipher.o crypt_unregister_hash.o \ |
|
75 \ |
|
76 sprng.o yarrow.o rc4.o rng_get_bytes.o rng_make_prng.o \ |
|
77 \ |
|
78 rand_prime.o is_prime.o \ |
|
79 \ |
|
80 ecc.o dh.o \ |
|
81 \ |
|
82 rsa.o rsa_exptmod.o rsa_free.o rsa_make_key.o \ |
|
83 \ |
|
84 dsa_export.o dsa_free.o dsa_import.o dsa_make_key.o dsa_sign_hash.o dsa_verify_hash.o dsa_verify_key.o \ |
|
85 \ |
|
86 xtea.o aes.o des.o safer_tab.o safer.o saferp.o rc2.o \ |
|
87 rc6.o rc5.o cast5.o noekeon.o blowfish.o twofish.o skipjack.o \ |
|
88 \ |
|
89 md2.o md4.o md5.o sha1.o sha256.o sha512.o tiger.o whirl.o \ |
|
90 rmd128.o rmd160.o \ |
|
91 \ |
|
92 packet_store_header.o packet_valid_header.o \ |
|
93 \ |
|
94 eax_addheader.o eax_decrypt.o eax_decrypt_verify_memory.o eax_done.o eax_encrypt.o \ |
|
95 eax_encrypt_authenticate_memory.o eax_init.o eax_test.o \ |
|
96 \ |
|
97 ocb_decrypt.o ocb_decrypt_verify_memory.o ocb_done_decrypt.o ocb_done_encrypt.o \ |
|
98 ocb_encrypt.o ocb_encrypt_authenticate_memory.o ocb_init.o ocb_ntz.o \ |
|
99 ocb_shift_xor.o ocb_test.o s_ocb_done.o \ |
|
100 \ |
|
101 omac_done.o omac_file.o omac_init.o omac_memory.o omac_process.o omac_test.o \ |
|
102 \ |
|
103 pmac_done.o pmac_file.o pmac_init.o pmac_memory.o pmac_ntz.o pmac_process.o \ |
|
104 pmac_shift_xor.o pmac_test.o \ |
|
105 \ |
|
106 cbc_start.o cbc_encrypt.o cbc_decrypt.o \ |
|
107 cfb_start.o cfb_encrypt.o cfb_decrypt.o \ |
|
108 ofb_start.o ofb_encrypt.o ofb_decrypt.o \ |
|
109 ctr_start.o ctr_encrypt.o ctr_decrypt.o \ |
|
110 ecb_start.o ecb_encrypt.o ecb_decrypt.o \ |
|
111 \ |
|
112 hash_file.o hash_filehandle.o hash_memory.o \ |
|
113 \ |
|
114 hmac_done.o hmac_file.o hmac_init.o hmac_memory.o hmac_process.o hmac_test.o \ |
|
115 \ |
|
116 pkcs_1_mgf1.o pkcs_1_oaep_encode.o pkcs_1_oaep_decode.o \ |
|
117 pkcs_1_pss_encode.o pkcs_1_pss_decode.o pkcs_1_i2osp.o pkcs_1_os2ip.o \ |
|
118 \ |
|
119 pkcs_5_1.o pkcs_5_2.o \ |
|
120 \ |
|
121 burn_stack.o zeromem.o \ |
|
122 $(MPIOBJECT) |
|
123 |
|
124 TESTOBJECTS=demos/test.o |
|
125 HASHOBJECTS=demos/hashsum.o |
|
126 CRYPTOBJECTS=demos/encrypt.o |
|
127 SMALLOBJECTS=demos/small.o |
|
128 PROFS=demos/x86_prof.o |
|
129 TVS=demos/tv_gen.o |
|
130 |
|
131 #Files left over from making the crypt.pdf. |
|
132 LEFTOVERS=*.dvi *.log *.aux *.toc *.idx *.ilg *.ind |
|
133 |
|
134 #Compressed filenames |
|
135 COMPRESSED=crypt.tar.bz2 crypt.zip crypt.tar.gz |
|
136 |
|
137 #Header files used by libtomcrypt. |
|
138 HEADERS=tommath.h mycrypt_cfg.h mycrypt_gf.h mycrypt_kr.h \ |
|
139 mycrypt_misc.h mycrypt_prng.h mycrypt_cipher.h mycrypt_hash.h \ |
|
140 mycrypt_macros.h mycrypt_pk.h mycrypt.h mycrypt_argchk.h \ |
|
141 mycrypt_custom.h mycrypt_pkcs.h |
|
142 |
|
143 #The default rule for make builds the libtomcrypt library. |
|
144 default:library mycrypt.h mycrypt_cfg.h |
|
145 |
|
146 #These are the rules to make certain object files. |
|
147 rsa.o: rsa.c rsa_sys.c |
|
148 ecc.o: ecc.c ecc_sys.c |
|
149 dh.o: dh.c dh_sys.c |
|
150 aes.o: aes.c aes_tab.c |
|
151 twofish.o: twofish.c twofish_tab.c |
|
152 sha512.o: sha512.c sha384.c |
|
153 sha256.o: sha256.c sha224.c |
|
154 |
|
155 #This rule makes the libtomcrypt library. |
|
156 library: $(LIBNAME) |
|
157 |
|
158 $(LIBNAME): $(OBJECTS) |
|
159 $(AR) $(ARFLAGS) $@ $(OBJECTS) |
|
160 |
|
161 #This rule makes the test program included with libtomcrypt |
|
162 test: library $(TESTOBJECTS) |
|
163 $(CC) $(TESTOBJECTS) $(LIBNAME) -o $(TEST) $(WARN) |
|
164 |
|
165 #This rule makes the hash program included with libtomcrypt |
|
166 hashsum: library $(HASHOBJECTS) |
|
167 $(CC) $(HASHOBJECTS) $(LIBNAME) -o $(HASH) $(WARN) |
|
168 |
|
169 #makes the crypt program |
|
170 crypt: library $(CRYPTOBJECTS) |
|
171 $(CC) $(CRYPTOBJECTS) $(LIBNAME) -o $(CRYPT) $(WARN) |
|
172 |
|
173 #makes the small program |
|
174 small: library $(SMALLOBJECTS) |
|
175 $(CC) $(SMALLOBJECTS) $(LIBNAME) -o $(SMALL) $(WARN) |
|
176 |
|
177 x86_prof: library $(PROFS) |
|
178 $(CC) $(PROFS) $(LIBNAME) -o $(PROF) |
|
179 |
|
180 tv_gen: library $(TVS) |
|
181 $(CC) $(TVS) $(LIBNAME) -o $(TV) |
|
182 |
|
183 |
|
184 #make a profiled library (takes a while!!!) |
|
185 # |
|
186 # This will build the library with profile generation |
|
187 # then run the test demo and rebuild the library. |
|
188 # |
|
189 # So far I've seen improvements in the MP math |
|
190 # |
|
191 # This works with GCC v3.3.x [tested with 3.3.3] |
|
192 profiled: $(TESTOBJECTS) |
|
193 make CFLAGS="$(CFLAGS) -fprofile-arcs" |
|
194 $(CC) $(TESTOBJECTS) $(LIBNAME) -o $(TEST) |
|
195 ./test |
|
196 rm -f *.a *.o test demos/test.o |
|
197 make CFLAGS="$(CFLAGS) -fbranch-probabilities" |
|
198 |
|
199 |
|
200 #Profiling in GCC 3.4.x is a little diff. |
|
201 # |
|
202 #Tested with GCC v3.4.0 |
|
203 profiled34: $(TESTOBJECTS) |
|
204 make CFLAGS="$(CFLAGS) -fprofile-generate" |
|
205 $(CC) $(TESTOBJECTS) $(LIBNAME) -lgcov -o $(TEST) |
|
206 ./test |
|
207 rm -f *.a *.o test demos/test.o |
|
208 make CFLAGS="$(CFLAGS) -fprofile-use" |
|
209 |
|
210 |
|
211 #This rule installs the library and the header files. This must be run |
|
212 #as root in order to have a high enough permission to write to the correct |
|
213 #directories and to set the owner and group to root. |
|
214 install: library docs |
|
215 install -d -g root -o root $(DESTDIR)$(LIBPATH) |
|
216 install -d -g root -o root $(DESTDIR)$(INCPATH) |
|
217 install -d -g root -o root $(DESTDIR)$(DATAPATH) |
|
218 install -g root -o root $(LIBNAME) $(DESTDIR)$(LIBPATH) |
|
219 install -g root -o root $(HEADERS) $(DESTDIR)$(INCPATH) |
|
220 install -g root -o root crypt.pdf $(DESTDIR)$(DATAPATH) |
|
221 |
|
222 #This rule cleans the source tree of all compiled code, not including the pdf |
|
223 #documentation. |
|
224 clean: |
|
225 rm -f $(OBJECTS) $(TESTOBJECTS) $(HASHOBJECTS) $(CRYPTOBJECTS) $(SMALLOBJECTS) $(LEFTOVERS) $(LIBNAME) |
|
226 rm -f $(TEST) $(HASH) $(COMPRESSED) $(PROFS) $(PROF) $(TVS) $(TV) |
|
227 rm -f *.a *.dll *stackdump *.lib *.exe *.obj demos/*.obj demos/*.o *.bat *.txt *.il *.da demos/*.il demos/*.da *.dyn *.dpi \ |
|
228 *.gcda *.gcno demos/*.gcno demos/*.gcda *~ |
|
229 |
|
230 #This builds the crypt.pdf file. Note that the rm -f *.pdf has been removed |
|
231 #from the clean command! This is because most people would like to keep the |
|
232 #nice pre-compiled crypt.pdf that comes with libtomcrypt! We only need to |
|
233 #delete it if we are rebuilding it. |
|
234 docs: crypt.tex |
|
235 rm -f crypt.pdf $(LEFTOVERS) |
|
236 latex crypt > /dev/null |
|
237 makeindex crypt > /dev/null |
|
238 latex crypt > /dev/null |
|
239 latex crypt > /dev/null |
|
240 dvipdf crypt |
|
241 rm -f $(LEFTOVERS) |
|
242 |
|
243 #beta |
|
244 beta: clean |
|
245 cd .. ; rm -rf crypt* libtomcrypt-$(VERSION)-beta ; mkdir libtomcrypt-$(VERSION)-beta ; \ |
|
246 cp -R ./libtomcrypt/* ./libtomcrypt-$(VERSION)-beta/ ; tar -c libtomcrypt-$(VERSION)-beta/* > crypt-$(VERSION)-beta.tar ; \ |
|
247 bzip2 -9vv crypt-$(VERSION)-beta.tar ; zip -9 -r crypt-$(VERSION)-beta.zip libtomcrypt-$(VERSION)-beta/* |
|
248 |
|
249 #zipup the project (take that!) |
|
250 zipup: clean docs |
|
251 cd .. ; rm -rf crypt* libtomcrypt-$(VERSION) ; mkdir libtomcrypt-$(VERSION) ; \ |
|
252 cp -R ./libtomcrypt/* ./libtomcrypt-$(VERSION)/ ; tar -c libtomcrypt-$(VERSION)/* > crypt-$(VERSION).tar ; \ |
|
253 bzip2 -9vv crypt-$(VERSION).tar ; zip -9 -r crypt-$(VERSION).zip libtomcrypt-$(VERSION)/* |