makefile 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. #Makefile for GCC
  2. #
  3. #Tom St Denis
  4. #version of library
  5. VERSION=0.42.0
  6. CFLAGS += -I./ -Wall -W -Wshadow -Wsign-compare
  7. ifndef MAKE
  8. MAKE=make
  9. endif
  10. ifndef IGNORE_SPEED
  11. #for speed
  12. CFLAGS += -O3 -funroll-loops
  13. #for size
  14. #CFLAGS += -Os
  15. #x86 optimizations [should be valid for any GCC install though]
  16. CFLAGS += -fomit-frame-pointer
  17. #debug
  18. #CFLAGS += -g3
  19. endif
  20. #install as this user
  21. ifndef INSTALL_GROUP
  22. GROUP=wheel
  23. else
  24. GROUP=$(INSTALL_GROUP)
  25. endif
  26. ifndef INSTALL_USER
  27. USER=root
  28. else
  29. USER=$(INSTALL_USER)
  30. endif
  31. #default files to install
  32. ifndef LIBNAME
  33. LIBNAME=libtommath.a
  34. endif
  35. default: ${LIBNAME}
  36. HEADERS=tommath.h tommath_class.h tommath_superclass.h
  37. #LIBPATH-The directory for libtommath to be installed to.
  38. #INCPATH-The directory to install the header files for libtommath.
  39. #DATAPATH-The directory to install the pdf docs.
  40. DESTDIR=
  41. LIBPATH=/usr/lib
  42. INCPATH=/usr/include
  43. DATAPATH=/usr/share/doc/libtommath/pdf
  44. OBJECTS=bncore.o bn_mp_init.o bn_mp_clear.o bn_mp_exch.o bn_mp_grow.o bn_mp_shrink.o \
  45. bn_mp_clamp.o bn_mp_zero.o bn_mp_set.o bn_mp_set_int.o bn_mp_init_size.o bn_mp_copy.o \
  46. bn_mp_init_copy.o bn_mp_abs.o bn_mp_neg.o bn_mp_cmp_mag.o bn_mp_cmp.o bn_mp_cmp_d.o \
  47. bn_mp_rshd.o bn_mp_lshd.o bn_mp_mod_2d.o bn_mp_div_2d.o bn_mp_mul_2d.o bn_mp_div_2.o \
  48. bn_mp_mul_2.o bn_s_mp_add.o bn_s_mp_sub.o bn_fast_s_mp_mul_digs.o bn_s_mp_mul_digs.o \
  49. bn_fast_s_mp_mul_high_digs.o bn_s_mp_mul_high_digs.o bn_fast_s_mp_sqr.o bn_s_mp_sqr.o \
  50. bn_mp_add.o bn_mp_sub.o bn_mp_karatsuba_mul.o bn_mp_mul.o bn_mp_karatsuba_sqr.o \
  51. bn_mp_sqr.o bn_mp_div.o bn_mp_mod.o bn_mp_add_d.o bn_mp_sub_d.o bn_mp_mul_d.o \
  52. bn_mp_div_d.o bn_mp_mod_d.o bn_mp_expt_d.o bn_mp_addmod.o bn_mp_submod.o \
  53. bn_mp_mulmod.o bn_mp_sqrmod.o bn_mp_gcd.o bn_mp_lcm.o bn_fast_mp_invmod.o bn_mp_invmod.o \
  54. bn_mp_reduce.o bn_mp_montgomery_setup.o bn_fast_mp_montgomery_reduce.o bn_mp_montgomery_reduce.o \
  55. bn_mp_exptmod_fast.o bn_mp_exptmod.o bn_mp_2expt.o bn_mp_n_root.o bn_mp_jacobi.o bn_reverse.o \
  56. bn_mp_count_bits.o bn_mp_read_unsigned_bin.o bn_mp_read_signed_bin.o bn_mp_to_unsigned_bin.o \
  57. bn_mp_to_signed_bin.o bn_mp_unsigned_bin_size.o bn_mp_signed_bin_size.o \
  58. bn_mp_xor.o bn_mp_and.o bn_mp_or.o bn_mp_rand.o bn_mp_montgomery_calc_normalization.o \
  59. bn_mp_prime_is_divisible.o bn_prime_tab.o bn_mp_prime_fermat.o bn_mp_prime_miller_rabin.o \
  60. bn_mp_prime_is_prime.o bn_mp_prime_next_prime.o bn_mp_dr_reduce.o \
  61. bn_mp_dr_is_modulus.o bn_mp_dr_setup.o bn_mp_reduce_setup.o \
  62. bn_mp_toom_mul.o bn_mp_toom_sqr.o bn_mp_div_3.o bn_s_mp_exptmod.o \
  63. bn_mp_reduce_2k.o bn_mp_reduce_is_2k.o bn_mp_reduce_2k_setup.o \
  64. bn_mp_reduce_2k_l.o bn_mp_reduce_is_2k_l.o bn_mp_reduce_2k_setup_l.o \
  65. bn_mp_radix_smap.o bn_mp_read_radix.o bn_mp_toradix.o bn_mp_radix_size.o \
  66. bn_mp_fread.o bn_mp_fwrite.o bn_mp_cnt_lsb.o bn_error.o \
  67. bn_mp_init_multi.o bn_mp_clear_multi.o bn_mp_exteuclid.o bn_mp_toradix_n.o \
  68. bn_mp_prime_random_ex.o bn_mp_get_int.o bn_mp_sqrt.o bn_mp_is_square.o bn_mp_init_set.o \
  69. bn_mp_init_set_int.o bn_mp_invmod_slow.o bn_mp_prime_rabin_miller_trials.o \
  70. bn_mp_to_signed_bin_n.o bn_mp_to_unsigned_bin_n.o
  71. $(LIBNAME): $(OBJECTS)
  72. $(AR) $(ARFLAGS) $@ $(OBJECTS)
  73. ranlib $@
  74. #make a profiled library (takes a while!!!)
  75. #
  76. # This will build the library with profile generation
  77. # then run the test demo and rebuild the library.
  78. #
  79. # So far I've seen improvements in the MP math
  80. profiled:
  81. make CFLAGS="$(CFLAGS) -fprofile-arcs -DTESTING" timing
  82. ./ltmtest
  83. rm -f *.a *.o ltmtest
  84. make CFLAGS="$(CFLAGS) -fbranch-probabilities"
  85. #make a single object profiled library
  86. profiled_single:
  87. perl gen.pl
  88. $(CC) $(CFLAGS) -fprofile-arcs -DTESTING -c mpi.c -o mpi.o
  89. $(CC) $(CFLAGS) -DTESTING -DTIMER demo/timing.c mpi.o -o ltmtest
  90. ./ltmtest
  91. rm -f *.o ltmtest
  92. $(CC) $(CFLAGS) -fbranch-probabilities -DTESTING -c mpi.c -o mpi.o
  93. $(AR) $(ARFLAGS) $(LIBNAME) mpi.o
  94. ranlib $(LIBNAME)
  95. install: $(LIBNAME)
  96. install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH)
  97. install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH)
  98. install -g $(GROUP) -o $(USER) $(LIBNAME) $(DESTDIR)$(LIBPATH)
  99. install -g $(GROUP) -o $(USER) $(HEADERS) $(DESTDIR)$(INCPATH)
  100. test: $(LIBNAME) demo/demo.o
  101. $(CC) $(CFLAGS) demo/demo.o $(LIBNAME) -o test
  102. mtest: test
  103. cd mtest ; $(CC) $(CFLAGS) mtest.c -o mtest
  104. timing: $(LIBNAME)
  105. $(CC) $(CFLAGS) -DTIMER demo/timing.c $(LIBNAME) -o ltmtest
  106. # makes the LTM book DVI file, requires tetex, perl and makeindex [part of tetex I think]
  107. docdvi: tommath.src
  108. cd pics ; MAKE=${MAKE} ${MAKE}
  109. echo "hello" > tommath.ind
  110. perl booker.pl
  111. latex tommath > /dev/null
  112. latex tommath > /dev/null
  113. makeindex tommath
  114. latex tommath > /dev/null
  115. # poster, makes the single page PDF poster
  116. poster: poster.tex
  117. pdflatex poster
  118. rm -f poster.aux poster.log
  119. # makes the LTM book PDF file, requires tetex, cleans up the LaTeX temp files
  120. docs: docdvi
  121. dvipdf tommath
  122. rm -f tommath.log tommath.aux tommath.dvi tommath.idx tommath.toc tommath.lof tommath.ind tommath.ilg
  123. cd pics ; MAKE=${MAKE} ${MAKE} clean
  124. #LTM user manual
  125. mandvi: bn.tex
  126. echo "hello" > bn.ind
  127. latex bn > /dev/null
  128. latex bn > /dev/null
  129. makeindex bn
  130. latex bn > /dev/null
  131. #LTM user manual [pdf]
  132. manual: mandvi
  133. pdflatex bn >/dev/null
  134. rm -f bn.aux bn.dvi bn.log bn.idx bn.lof bn.out bn.toc
  135. pretty:
  136. perl pretty.build
  137. clean:
  138. rm -f *.bat *.pdf *.o *.a *.obj *.lib *.exe *.dll etclib/*.o demo/demo.o test ltmtest mpitest mtest/mtest mtest/mtest.exe \
  139. *.idx *.toc *.log *.aux *.dvi *.lof *.ind *.ilg *.ps *.log *.s mpi.c *.da *.dyn *.dpi tommath.tex `find . -type f | grep [~] | xargs` *.lo *.la *.d
  140. rm -rf .libs
  141. #zipup the project (take that!)
  142. no_oops: clean
  143. cd .. ; cvs commit
  144. echo Scanning for scratch/dirty files
  145. find . -type f | grep -v CVS | xargs -n 1 bash mess.sh
  146. zipup: clean manual poster docs
  147. perl gen.pl ; mv mpi.c pre_gen/ ; \
  148. cd .. ; rm -rf ltm* libtommath-$(VERSION) ; mkdir libtommath-$(VERSION) ; \
  149. cp -R ./libtommath/* ./libtommath-$(VERSION)/ ; \
  150. tar -c libtommath-$(VERSION)/* | bzip2 -9vvc > ltm-$(VERSION).tar.bz2 ; \
  151. zip -9 -r ltm-$(VERSION).zip libtommath-$(VERSION)/* ; \
  152. mv -f ltm* ~ ; rm -rf libtommath-$(VERSION)