makefile 18 KB

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