comparison makefile @ 212:a3e31d3983cb libtomcrypt

merge of 24ccd6df75086f1028c185f4ad5946f449bf2e05 and cc138b6aed8d554f52f041a11afecb95e95ed3b8
author Matt Johnston <matt@ucc.asn.au>
date Wed, 06 Jul 2005 13:24:05 +0000
parents f01f0400314d
children
comparison
equal deleted inserted replaced
210:4768b55c5240 212:a3e31d3983cb
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.96
13
14 # Compiler and Linker Names
15 #CC=gcc
16 #LD=ld
17
18 # Archiver [makes .a files]
19 #AR=ar
20 #ARFLAGS=r
21
22 # Compilation flags. Note the += does not write over the user's CFLAGS!
23 # The rest of the flags come from the parent Dropbear makefile
24 CFLAGS += -c -I./
25 # -Werror
26
27 # optimize for SPEED
28 #CFLAGS += -O3 -funroll-loops
29
30 #add -fomit-frame-pointer. v3.2 is buggy for certain platforms!
31 #CFLAGS += -fomit-frame-pointer
32
33 # optimize for SIZE
34 #CFLAGS += -Os
35
36 # compile for DEBUGING
37 #CFLAGS += -g3
38 #ch1-01-3
39
40 #These flags control how the library gets built.
41
42 #Output filenames for various targets.
43 LIBNAME=libtomcrypt.a
44 HASH=hashsum
45 CRYPT=encrypt
46 SMALL=small
47 PROF=x86_prof
48 TV=tv_gen
49
50 #LIBPATH-The directory for libtomcrypt to be installed to.
51 #INCPATH-The directory to install the header files for libtomcrypt.
52 #DATAPATH-The directory to install the pdf docs.
53 DESTDIR=
54 LIBPATH=/usr/lib
55 INCPATH=/usr/include
56 DATAPATH=/usr/share/doc/libtomcrypt/pdf
57
58 #List of objects to compile.
59
60 #Leave MPI built-in or force developer to link against libtommath?
61 #MPIOBJECT=mpi.o
62 #Dropbear uses libtommath
63 MPIOBJECT=
64
65 OBJECTS=error_to_string.o mpi_to_ltc_error.o base64_encode.o base64_decode.o \
66 \
67 crypt.o crypt_find_cipher.o crypt_find_hash_any.o \
68 crypt_hash_is_valid.o crypt_register_hash.o crypt_unregister_prng.o \
69 crypt_argchk.o crypt_find_cipher_any.o crypt_find_hash_id.o \
70 crypt_prng_descriptor.o crypt_register_prng.o crypt_cipher_descriptor.o \
71 crypt_find_cipher_id.o crypt_find_prng.o crypt_prng_is_valid.o \
72 crypt_unregister_cipher.o crypt_cipher_is_valid.o crypt_find_hash.o \
73 crypt_hash_descriptor.o crypt_register_cipher.o crypt_unregister_hash.o \
74 \
75 sprng.o yarrow.o rc4.o rng_get_bytes.o rng_make_prng.o \
76 \
77 rand_prime.o is_prime.o \
78 \
79 ecc.o dh.o \
80 \
81 rsa_decrypt_key.o rsa_encrypt_key.o rsa_exptmod.o rsa_free.o rsa_make_key.o \
82 rsa_sign_hash.o rsa_verify_hash.o rsa_export.o rsa_import.o tim_exptmod.o \
83 \
84 dsa_export.o dsa_free.o dsa_import.o dsa_make_key.o dsa_sign_hash.o \
85 dsa_verify_hash.o dsa_verify_key.o \
86 \
87 aes.o aes_enc.o \
88 \
89 blowfish.o des.o safer_tab.o safer.o saferp.o rc2.o xtea.o \
90 rc6.o rc5.o cast5.o noekeon.o twofish.o skipjack.o \
91 \
92 md2.o md4.o md5.o sha1.o sha256.o sha512.o tiger.o whirl.o \
93 rmd128.o rmd160.o \
94 \
95 packet_store_header.o packet_valid_header.o \
96 \
97 eax_addheader.o eax_decrypt.o eax_decrypt_verify_memory.o eax_done.o eax_encrypt.o \
98 eax_encrypt_authenticate_memory.o eax_init.o eax_test.o \
99 \
100 ocb_decrypt.o ocb_decrypt_verify_memory.o ocb_done_decrypt.o ocb_done_encrypt.o \
101 ocb_encrypt.o ocb_encrypt_authenticate_memory.o ocb_init.o ocb_ntz.o \
102 ocb_shift_xor.o ocb_test.o s_ocb_done.o \
103 \
104 omac_done.o omac_file.o omac_init.o omac_memory.o omac_process.o omac_test.o \
105 \
106 pmac_done.o pmac_file.o pmac_init.o pmac_memory.o pmac_ntz.o pmac_process.o \
107 pmac_shift_xor.o pmac_test.o \
108 \
109 cbc_start.o cbc_encrypt.o cbc_decrypt.o cbc_getiv.o cbc_setiv.o \
110 cfb_start.o cfb_encrypt.o cfb_decrypt.o cfb_getiv.o cfb_setiv.o \
111 ofb_start.o ofb_encrypt.o ofb_decrypt.o ofb_getiv.o ofb_setiv.o \
112 ctr_start.o ctr_encrypt.o ctr_decrypt.o ctr_getiv.o ctr_setiv.o \
113 ecb_start.o ecb_encrypt.o ecb_decrypt.o \
114 \
115 hash_file.o hash_filehandle.o hash_memory.o \
116 \
117 hmac_done.o hmac_file.o hmac_init.o hmac_memory.o hmac_process.o hmac_test.o \
118 \
119 pkcs_1_mgf1.o pkcs_1_oaep_encode.o pkcs_1_oaep_decode.o \
120 pkcs_1_pss_encode.o pkcs_1_pss_decode.o pkcs_1_i2osp.o pkcs_1_os2ip.o \
121 pkcs_1_v15_es_encode.o pkcs_1_v15_es_decode.o pkcs_1_v15_sa_encode.o pkcs_1_v15_sa_decode.o \
122 \
123 pkcs_5_1.o pkcs_5_2.o \
124 \
125 burn_stack.o zeromem.o \
126 $(MPIOBJECT)
127
128 TESTOBJECTS=demos/test.o
129 HASHOBJECTS=demos/hashsum.o
130 CRYPTOBJECTS=demos/encrypt.o
131 SMALLOBJECTS=demos/small.o
132 PROFS=demos/x86_prof.o
133 TVS=demos/tv_gen.o
134
135 #Files left over from making the crypt.pdf.
136 LEFTOVERS=*.dvi *.log *.aux *.toc *.idx *.ilg *.ind *.out
137
138 #Compressed filenames
139 COMPRESSED=crypt-$(VERSION).tar.bz2 crypt-$(VERSION).zip
140
141 #Header files used by libtomcrypt.
142 HEADERS=ltc_tommath.h mycrypt_cfg.h \
143 mycrypt_misc.h mycrypt_prng.h mycrypt_cipher.h mycrypt_hash.h \
144 mycrypt_macros.h mycrypt_pk.h mycrypt.h mycrypt_argchk.h \
145 mycrypt_custom.h mycrypt_pkcs.h
146
147 #The default rule for make builds the libtomcrypt library.
148 default:library
149
150 #ciphers come in two flavours... enc+dec and enc
151 aes_enc.o: aes.c aes_tab.c
152 $(CC) $(CFLAGS) -DENCRYPT_ONLY -c aes.c -o aes_enc.o
153
154 #These are the rules to make certain object files.
155 ecc.o: ecc.c ecc_sys.c
156 dh.o: dh.c dh_sys.c
157 sha512.o: sha512.c sha384.c
158 sha256.o: sha256.c sha224.c
159
160 #This rule makes the libtomcrypt library.
161 library: $(LIBNAME)
162
163 $(LIBNAME): $(OBJECTS)
164 $(AR) $(ARFLAGS) $@ $(OBJECTS)
165 $(RANLIB) $@
166
167 #This rule makes the hash program included with libtomcrypt
168 hashsum: library $(HASHOBJECTS)
169 $(CC) $(HASHOBJECTS) $(LIBNAME) -o $(HASH) $(WARN)
170
171 #makes the crypt program
172 crypt: library $(CRYPTOBJECTS)
173 $(CC) $(CRYPTOBJECTS) $(LIBNAME) -o $(CRYPT) $(WARN)
174
175 #makes the small program
176 small: library $(SMALLOBJECTS)
177 $(CC) $(SMALLOBJECTS) $(LIBNAME) -o $(SMALL) $(WARN)
178
179 x86_prof: library $(PROFS)
180 $(CC) $(PROFS) $(LIBNAME) -o $(PROF)
181
182 tv_gen: library $(TVS)
183 $(CC) $(TVS) $(LIBNAME) -o $(TV)
184
185 #This rule installs the library and the header files. This must be run
186 #as root in order to have a high enough permission to write to the correct
187 #directories and to set the owner and group to root.
188 install: library docs
189 install -d -g root -o root $(DESTDIR)$(LIBPATH)
190 install -d -g root -o root $(DESTDIR)$(INCPATH)
191 install -d -g root -o root $(DESTDIR)$(DATAPATH)
192 install -g root -o root $(LIBNAME) $(DESTDIR)$(LIBPATH)
193 install -g root -o root $(HEADERS) $(DESTDIR)$(INCPATH)
194 install -g root -o root doc/crypt.pdf $(DESTDIR)$(DATAPATH)
195
196 #This rule cleans the source tree of all compiled code, not including the pdf
197 #documentation.
198 clean:
199 rm -f $(OBJECTS) $(TESTOBJECTS) $(HASHOBJECTS) $(CRYPTOBJECTS) $(SMALLOBJECTS) $(LEFTOVERS) $(LIBNAME)
200 rm -f $(TEST) $(HASH) $(COMPRESSED) $(PROFS) $(PROF) $(TVS) $(TV)
201 rm -f *.a *.dll *stackdump *.lib *.exe *.obj demos/*.obj demos/*.o *.bat *.txt *.il *.da demos/*.il demos/*.da *.dyn *.dpi \
202 *.gcda *.gcno demos/*.gcno demos/*.gcda *~ doc/*
203 cd demos/test && make clean
204
205 #This builds the crypt.pdf file. Note that the rm -f *.pdf has been removed
206 #from the clean command! This is because most people would like to keep the
207 #nice pre-compiled crypt.pdf that comes with libtomcrypt! We only need to
208 #delete it if we are rebuilding it.
209 docs: crypt.tex
210 rm -f doc/crypt.pdf $(LEFTOVERS)
211 echo "hello" > crypt.ind
212 latex crypt > /dev/null
213 makeindex crypt > /dev/null
214 latex crypt > /dev/null
215 latex crypt > /dev/null
216 dvipdf crypt
217 mv -ivf crypt.pdf doc/crypt.pdf
218 rm -f $(LEFTOVERS)
219
220 docdvi: crypt.tex
221 echo hello > crypt.ind
222 latex crypt > /dev/null
223 latex crypt > /dev/null
224 makeindex crypt
225 latex crypt > /dev/null
226
227 #beta
228 beta: clean
229 cd .. ; rm -rf crypt* libtomcrypt-$(VERSION)-beta ; mkdir libtomcrypt-$(VERSION)-beta ; \
230 cp -R ./libtomcrypt/* ./libtomcrypt-$(VERSION)-beta/ ; tar -c libtomcrypt-$(VERSION)-beta/* > crypt-$(VERSION)-beta.tar ; \
231 bzip2 -9vv crypt-$(VERSION)-beta.tar ; zip -9 -r crypt-$(VERSION)-beta.zip libtomcrypt-$(VERSION)-beta/*
232
233 #zipup the project (take that!)
234 zipup: clean docs
235 cd .. ; rm -rf crypt* libtomcrypt-$(VERSION) ; mkdir libtomcrypt-$(VERSION) ; \
236 cp -R ./libtomcrypt/* ./libtomcrypt-$(VERSION)/ ; tar -c libtomcrypt-$(VERSION)/* > crypt-$(VERSION).tar ; \
237 bzip2 -9vv crypt-$(VERSION).tar ; zip -9 -r crypt-$(VERSION).zip libtomcrypt-$(VERSION)/* ; \
238 gpg -b -a crypt-$(VERSION).tar.bz2 ; \
239 gpg -b -a crypt-$(VERSION).zip