makefile 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. # MAKEFILE for linux GCC
  2. #
  3. # Tom St Denis
  4. # Modified by Clay Culver
  5. # The version
  6. VERSION=1.07
  7. # Compiler and Linker Names
  8. #CC=gcc
  9. #LD=ld
  10. # Archiver [makes .a files]
  11. #AR=ar
  12. #ARFLAGS=r
  13. ifndef MAKE
  14. MAKE=make
  15. endif
  16. # ranlib tools
  17. ifndef RANLIB
  18. RANLIB=ranlib
  19. endif
  20. # Compilation flags. Note the += does not write over the user's CFLAGS!
  21. CFLAGS += -c -I./testprof/ -I./src/headers/ -Wall -Wsign-compare -W -Wshadow -Wno-unused-parameter -DLTC_SOURCE
  22. # additional warnings (newer GCC 3.4 and higher)
  23. ifdef GCC_34
  24. CFLAGS += -Wsystem-headers -Wdeclaration-after-statement -Wbad-function-cast -Wcast-align -Wstrict-prototypes -Wmissing-prototypes \
  25. -Wmissing-declarations -Wpointer-arith
  26. endif
  27. ifndef IGNORE_SPEED
  28. # optimize for SPEED
  29. CFLAGS += -O3 -funroll-loops
  30. # add -fomit-frame-pointer. hinders debugging!
  31. CFLAGS += -fomit-frame-pointer
  32. # optimize for SIZE
  33. #CFLAGS += -Os -DLTC_SMALL_CODE
  34. endif
  35. # older GCCs can't handle the "rotate with immediate" ROLc/RORc/etc macros
  36. # define this to help
  37. #CFLAGS += -DLTC_NO_ROLC
  38. # compile for DEBUGING (required for ccmalloc checking!!!)
  39. #CFLAGS += -g3 -DLTC_NO_ASM
  40. #Output filenames for various targets.
  41. ifndef LIBNAME
  42. LIBNAME=libtomcrypt.a
  43. endif
  44. ifndef LIBTEST
  45. LIBTEST=libtomcrypt_prof.a
  46. endif
  47. LIBTEST_S=$(LIBTEST)
  48. HASH=hashsum
  49. CRYPT=encrypt
  50. SMALL=small
  51. PROF=x86_prof
  52. TV=tv_gen
  53. MULTI=multi
  54. TIMING=timing
  55. TEST=test
  56. #LIBPATH-The directory for libtomcrypt to be installed to.
  57. #INCPATH-The directory to install the header files for libtomcrypt.
  58. #DATAPATH-The directory to install the pdf docs.
  59. ifndef DESTDIR
  60. DESTDIR=
  61. endif
  62. ifndef LIBPATH
  63. LIBPATH=/usr/lib
  64. endif
  65. ifndef INCPATH
  66. INCPATH=/usr/include
  67. endif
  68. ifndef DATAPATH
  69. DATAPATH=/usr/share/doc/libtomcrypt/pdf
  70. endif
  71. #Who do we install as?
  72. ifdef INSTALL_USER
  73. USER=$(INSTALL_USER)
  74. else
  75. USER=root
  76. endif
  77. ifdef INSTALL_GROUP
  78. GROUP=$(INSTALL_GROUP)
  79. else
  80. GROUP=wheel
  81. endif
  82. #List of objects to compile.
  83. OBJECTS=src/ciphers/aes/aes_enc.o src/ciphers/aes/aes.o src/ciphers/anubis.o src/ciphers/blowfish.o \
  84. src/ciphers/cast5.o src/ciphers/des.o src/ciphers/khazad.o src/ciphers/noekeon.o src/ciphers/rc2.o \
  85. src/ciphers/rc5.o src/ciphers/rc6.o src/ciphers/safer/safer.o src/ciphers/safer/safer_tab.o \
  86. src/ciphers/safer/saferp.o src/ciphers/skipjack.o src/ciphers/twofish/twofish.o src/ciphers/xtea.o \
  87. src/encauth/ccm/ccm_memory.o src/encauth/ccm/ccm_test.o src/encauth/eax/eax_addheader.o \
  88. src/encauth/eax/eax_decrypt.o src/encauth/eax/eax_decrypt_verify_memory.o src/encauth/eax/eax_done.o \
  89. src/encauth/eax/eax_encrypt.o src/encauth/eax/eax_encrypt_authenticate_memory.o \
  90. src/encauth/eax/eax_init.o src/encauth/eax/eax_test.o src/encauth/gcm/gcm_add_aad.o \
  91. src/encauth/gcm/gcm_add_iv.o src/encauth/gcm/gcm_done.o src/encauth/gcm/gcm_gf_mult.o \
  92. src/encauth/gcm/gcm_init.o src/encauth/gcm/gcm_memory.o src/encauth/gcm/gcm_process.o \
  93. src/encauth/gcm/gcm_reset.o src/encauth/gcm/gcm_test.o src/encauth/ocb/ocb_decrypt.o \
  94. src/encauth/ocb/ocb_decrypt_verify_memory.o src/encauth/ocb/ocb_done_decrypt.o \
  95. src/encauth/ocb/ocb_done_encrypt.o src/encauth/ocb/ocb_encrypt.o \
  96. src/encauth/ocb/ocb_encrypt_authenticate_memory.o src/encauth/ocb/ocb_init.o src/encauth/ocb/ocb_ntz.o \
  97. src/encauth/ocb/ocb_shift_xor.o src/encauth/ocb/ocb_test.o src/encauth/ocb/s_ocb_done.o \
  98. src/hashes/chc/chc.o src/hashes/helper/hash_file.o src/hashes/helper/hash_filehandle.o \
  99. src/hashes/helper/hash_memory.o src/hashes/helper/hash_memory_multi.o src/hashes/md2.o src/hashes/md4.o \
  100. src/hashes/md5.o src/hashes/rmd128.o src/hashes/rmd160.o src/hashes/sha1.o src/hashes/sha2/sha256.o \
  101. src/hashes/sha2/sha512.o src/hashes/tiger.o src/hashes/whirl/whirl.o src/mac/hmac/hmac_done.o \
  102. src/mac/hmac/hmac_file.o src/mac/hmac/hmac_init.o src/mac/hmac/hmac_memory.o \
  103. src/mac/hmac/hmac_memory_multi.o src/mac/hmac/hmac_process.o src/mac/hmac/hmac_test.o \
  104. src/mac/omac/omac_done.o src/mac/omac/omac_file.o src/mac/omac/omac_init.o src/mac/omac/omac_memory.o \
  105. src/mac/omac/omac_memory_multi.o src/mac/omac/omac_process.o src/mac/omac/omac_test.o \
  106. src/mac/pelican/pelican.o src/mac/pelican/pelican_memory.o src/mac/pelican/pelican_test.o \
  107. src/mac/pmac/pmac_done.o src/mac/pmac/pmac_file.o src/mac/pmac/pmac_init.o src/mac/pmac/pmac_memory.o \
  108. src/mac/pmac/pmac_memory_multi.o src/mac/pmac/pmac_ntz.o src/mac/pmac/pmac_process.o \
  109. src/mac/pmac/pmac_shift_xor.o src/mac/pmac/pmac_test.o src/math/ltm_desc.o src/math/multi.o \
  110. 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 \
  112. 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 \
  114. 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 \
  116. src/misc/crypt/crypt_find_hash_id.o src/misc/crypt/crypt_find_hash_oid.o \
  117. src/misc/crypt/crypt_find_prng.o src/misc/crypt/crypt_hash_descriptor.o \
  118. src/misc/crypt/crypt_hash_is_valid.o src/misc/crypt/crypt_ltc_mp_descriptor.o \
  119. src/misc/crypt/crypt_prng_descriptor.o src/misc/crypt/crypt_prng_is_valid.o \
  120. src/misc/crypt/crypt_register_cipher.o src/misc/crypt/crypt_register_hash.o \
  121. src/misc/crypt/crypt_register_prng.o src/misc/crypt/crypt_unregister_cipher.o \
  122. src/misc/crypt/crypt_unregister_hash.o src/misc/crypt/crypt_unregister_prng.o \
  123. src/misc/error_to_string.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 \
  125. 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 \
  127. 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 \
  129. src/modes/ctr/ctr_getiv.o src/modes/ctr/ctr_setiv.o src/modes/ctr/ctr_start.o \
  130. 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 \
  132. 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 \
  134. 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 \
  136. src/pk/asn1/der/ia5/der_encode_ia5_string.o src/pk/asn1/der/ia5/der_length_ia5_string.o \
  137. src/pk/asn1/der/integer/der_decode_integer.o src/pk/asn1/der/integer/der_encode_integer.o \
  138. src/pk/asn1/der/integer/der_length_integer.o \
  139. src/pk/asn1/der/object_identifier/der_decode_object_identifier.o \
  140. src/pk/asn1/der/object_identifier/der_encode_object_identifier.o \
  141. 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 \
  143. src/pk/asn1/der/octet/der_length_octet_string.o \
  144. src/pk/asn1/der/printable_string/der_decode_printable_string.o \
  145. src/pk/asn1/der/printable_string/der_encode_printable_string.o \
  146. 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_flexi.o \
  148. src/pk/asn1/der/sequence/der_decode_sequence_multi.o src/pk/asn1/der/sequence/der_encode_sequence.o \
  149. src/pk/asn1/der/sequence/der_encode_sequence_multi.o src/pk/asn1/der/sequence/der_length_sequence.o \
  150. src/pk/asn1/der/sequence/der_sequence_free.o src/pk/asn1/der/short_integer/der_decode_short_integer.o \
  151. 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 \
  153. src/pk/asn1/der/utctime/der_encode_utctime.o src/pk/asn1/der/utctime/der_length_utctime.o \
  154. src/pk/dsa/dsa_decrypt_key.o src/pk/dsa/dsa_encrypt_key.o src/pk/dsa/dsa_export.o src/pk/dsa/dsa_free.o \
  155. src/pk/dsa/dsa_import.o src/pk/dsa/dsa_make_key.o src/pk/dsa/dsa_shared_secret.o \
  156. 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 \
  157. src/pk/ecc/ecc_decrypt_key.o src/pk/ecc/ecc_encrypt_key.o src/pk/ecc/ecc_export.o src/pk/ecc/ecc_free.o \
  158. src/pk/ecc/ecc_get_size.o src/pk/ecc/ecc_import.o src/pk/ecc/ecc_make_key.o \
  159. src/pk/ecc/ecc_shared_secret.o src/pk/ecc/ecc_sign_hash.o src/pk/ecc/ecc_sizes.o src/pk/ecc/ecc_test.o \
  160. src/pk/ecc/ecc_verify_hash.o src/pk/ecc/ltc_ecc_is_valid_idx.o src/pk/ecc/ltc_ecc_map.o \
  161. src/pk/ecc/ltc_ecc_mulmod.o src/pk/ecc/ltc_ecc_mulmod_timing.o src/pk/ecc/ltc_ecc_points.o \
  162. src/pk/ecc/ltc_ecc_projective_add_point.o src/pk/ecc/ltc_ecc_projective_dbl_point.o \
  163. src/pk/katja/katja_decrypt_key.o src/pk/katja/katja_encrypt_key.o src/pk/katja/katja_export.o \
  164. src/pk/katja/katja_exptmod.o src/pk/katja/katja_free.o src/pk/katja/katja_import.o \
  165. src/pk/katja/katja_make_key.o src/pk/pkcs1/pkcs_1_i2osp.o src/pk/pkcs1/pkcs_1_mgf1.o \
  166. src/pk/pkcs1/pkcs_1_oaep_decode.o src/pk/pkcs1/pkcs_1_oaep_encode.o src/pk/pkcs1/pkcs_1_os2ip.o \
  167. src/pk/pkcs1/pkcs_1_pss_decode.o src/pk/pkcs1/pkcs_1_pss_encode.o src/pk/rsa/rsa_decrypt_key.o \
  168. src/pk/rsa/rsa_encrypt_key.o src/pk/rsa/rsa_export.o src/pk/rsa/rsa_exptmod.o src/pk/rsa/rsa_free.o \
  169. src/pk/rsa/rsa_import.o src/pk/rsa/rsa_make_key.o src/pk/rsa/rsa_sign_hash.o \
  170. src/pk/rsa/rsa_verify_hash.o src/prngs/fortuna.o src/prngs/rc4.o src/prngs/rng_get_bytes.o \
  171. src/prngs/rng_make_prng.o src/prngs/sober128.o src/prngs/sprng.o src/prngs/yarrow.o
  172. HEADERS=src/headers/tomcrypt_cfg.h src/headers/tomcrypt_mac.h src/headers/tomcrypt_macros.h \
  173. src/headers/tomcrypt_custom.h src/headers/tomcrypt_argchk.h src/headers/tomcrypt_cipher.h \
  174. src/headers/tomcrypt_pk.h src/headers/tomcrypt_hash.h src/headers/tomcrypt_math.h \
  175. src/headers/tomcrypt_misc.h src/headers/tomcrypt.h src/headers/tomcrypt_pkcs.h \
  176. src/headers/tomcrypt_prng.h testprof/tomcrypt_test.h
  177. TESTOBJECTS=demos/test.o
  178. HASHOBJECTS=demos/hashsum.o
  179. CRYPTOBJECTS=demos/encrypt.o
  180. SMALLOBJECTS=demos/small.o
  181. TVS=demos/tv_gen.o
  182. MULTIS=demos/multi.o
  183. TIMINGS=demos/timing.o
  184. TESTS=demos/test.o
  185. #Files left over from making the crypt.pdf.
  186. LEFTOVERS=*.dvi *.log *.aux *.toc *.idx *.ilg *.ind *.out
  187. #Compressed filenames
  188. COMPRESSED=crypt-$(VERSION).tar.bz2 crypt-$(VERSION).zip
  189. #The default rule for make builds the libtomcrypt library.
  190. default:library
  191. #ciphers come in two flavours... enc+dec and enc
  192. src/ciphers/aes/aes_enc.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c
  193. $(CC) $(CFLAGS) -DENCRYPT_ONLY -c src/ciphers/aes/aes.c -o src/ciphers/aes/aes_enc.o
  194. #These are the rules to make certain object files.
  195. src/ciphers/aes/aes.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c
  196. src/ciphers/twofish/twofish.o: src/ciphers/twofish/twofish.c src/ciphers/twofish/twofish_tab.c
  197. src/hashes/whirl/whirl.o: src/hashes/whirl/whirl.c src/hashes/whirl/whirltab.c
  198. src/hashes/sha2/sha512.o: src/hashes/sha2/sha512.c src/hashes/sha2/sha384.c
  199. src/hashes/sha2/sha256.o: src/hashes/sha2/sha256.c src/hashes/sha2/sha224.c
  200. #This rule makes the libtomcrypt library.
  201. library: $(LIBNAME)
  202. testprof/$(LIBTEST):
  203. cd testprof ; CFLAGS="$(CFLAGS)" LIBTEST_S=$(LIBTEST_S) $(MAKE)
  204. $(LIBNAME): $(OBJECTS)
  205. $(AR) $(ARFLAGS) $@ $(OBJECTS)
  206. $(RANLIB) $@
  207. #This rule makes the hash program included with libtomcrypt
  208. hashsum: library $(HASHOBJECTS)
  209. $(CC) $(HASHOBJECTS) $(LIBNAME) $(EXTRALIBS) -o $(HASH) $(WARN)
  210. #makes the crypt program
  211. crypt: library $(CRYPTOBJECTS)
  212. $(CC) $(CRYPTOBJECTS) $(LIBNAME) $(EXTRALIBS) -o $(CRYPT) $(WARN)
  213. #makes the small program
  214. small: library $(SMALLOBJECTS)
  215. $(CC) $(SMALLOBJECTS) $(LIBNAME) $(EXTRALIBS) -o $(SMALL) $(WARN)
  216. tv_gen: library $(TVS)
  217. $(CC) $(TVS) $(LIBNAME) $(EXTRALIBS) -o $(TV)
  218. multi: library $(MULTIS)
  219. $(CC) $(MULTIS) $(LIBNAME) $(EXTRALIBS) -o $(MULTI)
  220. timing: library testprof/$(LIBTEST) $(TIMINGS)
  221. $(CC) $(TIMINGS) testprof/$(LIBTEST) $(LIBNAME) $(EXTRALIBS) -o $(TIMING)
  222. test: library testprof/$(LIBTEST) $(TESTS)
  223. $(CC) $(TESTS) testprof/$(LIBTEST) $(LIBNAME) $(EXTRALIBS) -o $(TEST)
  224. #This rule installs the library and the header files. This must be run
  225. #as root in order to have a high enough permission to write to the correct
  226. #directories and to set the owner and group to root.
  227. ifndef NODOCS
  228. install: library docs
  229. else
  230. install: library
  231. endif
  232. install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH)
  233. install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH)
  234. install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(DATAPATH)
  235. install -g $(GROUP) -o $(USER) $(LIBNAME) $(DESTDIR)$(LIBPATH)
  236. install -g $(GROUP) -o $(USER) $(HEADERS) $(DESTDIR)$(INCPATH)
  237. ifndef NODOCS
  238. install -g $(GROUP) -o $(USER) doc/crypt.pdf $(DESTDIR)$(DATAPATH)
  239. endif
  240. install_test: testprof/$(LIBTEST)
  241. install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH)
  242. install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH)
  243. install -g $(GROUP) -o $(USER) testprof/$(LIBTEST) $(DESTDIR)$(LIBPATH)
  244. profile:
  245. CFLAGS="$(CFLAGS) -fprofile-generate" $(MAKE) timing EXTRALIBS="$(EXTRALIBS) -lgcov"
  246. ./timing
  247. rm -f timing `find . -type f | grep [.][ao] | xargs`
  248. CFLAGS="$(CFLAGS) -fprofile-use" $(MAKE) timing EXTRALIBS="$(EXTRALIBS) -lgcov"
  249. #This rule cleans the source tree of all compiled code, not including the pdf
  250. #documentation.
  251. clean:
  252. rm -f `find . -type f | grep "[.]o" | xargs`
  253. rm -f `find . -type f | grep "[.]lo" | xargs`
  254. rm -f `find . -type f | grep "[.]a" | xargs`
  255. rm -f `find . -type f | grep "[.]la" | xargs`
  256. rm -f `find . -type f | grep "[.]obj" | xargs`
  257. rm -f `find . -type f | grep "[.]lib" | xargs`
  258. rm -f `find . -type f | grep "[.]exe" | xargs`
  259. rm -f `find . -type f | grep "[.]gcda" | xargs`
  260. rm -f `find . -type f | grep "[.]gcno" | xargs`
  261. rm -f `find . -type f | grep "[.]il" | xargs`
  262. rm -f `find . -type f | grep "[.]dyn" | xargs`
  263. rm -f `find . -type f | grep "[.]dpi" | xargs`
  264. rm -rf `find . -type d | grep "[.]libs" | xargs`
  265. rm -f crypt.aux crypt.dvi crypt.idx crypt.ilg crypt.ind crypt.log crypt.toc
  266. rm -f $(TV) $(PROF) $(SMALL) $(CRYPT) $(HASHSUM) $(MULTI) $(TIMING) $(TEST)
  267. rm -rf doc/doxygen
  268. rm -f doc/*.pdf
  269. rm -f *.txt
  270. #build the doxy files (requires Doxygen, tetex and patience)
  271. doxy:
  272. doxygen
  273. cd doc/doxygen/latex ; ${MAKE} ; mv -f refman.pdf ../../.
  274. echo The huge doxygen PDF should be available as doc/refman.pdf
  275. #This builds the crypt.pdf file. Note that the rm -f *.pdf has been removed
  276. #from the clean command! This is because most people would like to keep the
  277. #nice pre-compiled crypt.pdf that comes with libtomcrypt! We only need to
  278. #delete it if we are rebuilding it.
  279. docs: crypt.tex
  280. rm -f doc/crypt.pdf $(LEFTOVERS)
  281. echo "hello" > crypt.ind
  282. latex crypt > /dev/null
  283. latex crypt > /dev/null
  284. makeindex crypt.idx > /dev/null
  285. latex crypt > /dev/null
  286. dvipdf crypt
  287. mv -ivf crypt.pdf doc/crypt.pdf
  288. rm -f $(LEFTOVERS)
  289. docdvi: crypt.tex
  290. echo hello > crypt.ind
  291. latex crypt > /dev/null
  292. latex crypt > /dev/null
  293. makeindex crypt.idx
  294. latex crypt > /dev/null
  295. #zipup the project (take that!)
  296. no_oops: clean
  297. cd .. ; cvs commit
  298. echo Scanning for scratch/dirty files
  299. find . -type f | grep -v CVS | xargs -n 1 bash mess.sh
  300. zipup: no_oops docs
  301. cd .. ; rm -rf crypt* libtomcrypt-$(VERSION) ; mkdir libtomcrypt-$(VERSION) ; \
  302. cp -R ./libtomcrypt/* ./libtomcrypt-$(VERSION)/ ; \
  303. cd libtomcrypt-$(VERSION) ; rm -rf `find . -type d | grep CVS | xargs` ; cd .. ; \
  304. tar -cjvf crypt-$(VERSION).tar.bz2 libtomcrypt-$(VERSION) ; \
  305. zip -9r crypt-$(VERSION).zip libtomcrypt-$(VERSION) ; \
  306. gpg -b -a crypt-$(VERSION).tar.bz2 ; gpg -b -a crypt-$(VERSION).zip ; \
  307. mv -fv crypt* ~ ; rm -rf libtomcrypt-$(VERSION)
  308. # $Source: /cvs/libtom/libtomcrypt/makefile,v $
  309. # $Revision: 1.103 $
  310. # $Date: 2005/11/18 01:46:22 $