1*ebfedea0SLionel Sambuc#Makefile for ICC 2*ebfedea0SLionel Sambuc# 3*ebfedea0SLionel Sambuc#Tom St Denis 4*ebfedea0SLionel SambucCC=icc 5*ebfedea0SLionel Sambuc 6*ebfedea0SLionel SambucCFLAGS += -I./ 7*ebfedea0SLionel Sambuc 8*ebfedea0SLionel Sambuc# optimize for SPEED 9*ebfedea0SLionel Sambuc# 10*ebfedea0SLionel Sambuc# -mcpu= can be pentium, pentiumpro (covers PII through PIII) or pentium4 11*ebfedea0SLionel Sambuc# -ax? specifies make code specifically for ? but compatible with IA-32 12*ebfedea0SLionel Sambuc# -x? specifies compile solely for ? [not specifically IA-32 compatible] 13*ebfedea0SLionel Sambuc# 14*ebfedea0SLionel Sambuc# where ? is 15*ebfedea0SLionel Sambuc# K - PIII 16*ebfedea0SLionel Sambuc# W - first P4 [Williamette] 17*ebfedea0SLionel Sambuc# N - P4 Northwood 18*ebfedea0SLionel Sambuc# P - P4 Prescott 19*ebfedea0SLionel Sambuc# B - Blend of P4 and PM [mobile] 20*ebfedea0SLionel Sambuc# 21*ebfedea0SLionel Sambuc# Default to just generic max opts 22*ebfedea0SLionel SambucCFLAGS += -O3 -xP -ip 23*ebfedea0SLionel Sambuc 24*ebfedea0SLionel Sambuc#install as this user 25*ebfedea0SLionel SambucUSER=root 26*ebfedea0SLionel SambucGROUP=root 27*ebfedea0SLionel Sambuc 28*ebfedea0SLionel Sambucdefault: libtommath.a 29*ebfedea0SLionel Sambuc 30*ebfedea0SLionel Sambuc#default files to install 31*ebfedea0SLionel SambucLIBNAME=libtommath.a 32*ebfedea0SLionel SambucHEADERS=tommath.h 33*ebfedea0SLionel Sambuc 34*ebfedea0SLionel Sambuc#LIBPATH-The directory for libtomcrypt to be installed to. 35*ebfedea0SLionel Sambuc#INCPATH-The directory to install the header files for libtommath. 36*ebfedea0SLionel Sambuc#DATAPATH-The directory to install the pdf docs. 37*ebfedea0SLionel SambucDESTDIR= 38*ebfedea0SLionel SambucLIBPATH=/usr/lib 39*ebfedea0SLionel SambucINCPATH=/usr/include 40*ebfedea0SLionel SambucDATAPATH=/usr/share/doc/libtommath/pdf 41*ebfedea0SLionel Sambuc 42*ebfedea0SLionel SambucOBJECTS=bncore.o bn_mp_init.o bn_mp_clear.o bn_mp_exch.o bn_mp_grow.o bn_mp_shrink.o \ 43*ebfedea0SLionel Sambucbn_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 \ 44*ebfedea0SLionel Sambucbn_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 \ 45*ebfedea0SLionel Sambucbn_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 \ 46*ebfedea0SLionel Sambucbn_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 \ 47*ebfedea0SLionel Sambucbn_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 \ 48*ebfedea0SLionel Sambucbn_mp_add.o bn_mp_sub.o bn_mp_karatsuba_mul.o bn_mp_mul.o bn_mp_karatsuba_sqr.o \ 49*ebfedea0SLionel Sambucbn_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 \ 50*ebfedea0SLionel Sambucbn_mp_div_d.o bn_mp_mod_d.o bn_mp_expt_d.o bn_mp_addmod.o bn_mp_submod.o \ 51*ebfedea0SLionel Sambucbn_mp_mulmod.o bn_mp_sqrmod.o bn_mp_gcd.o bn_mp_lcm.o bn_fast_mp_invmod.o bn_mp_invmod.o \ 52*ebfedea0SLionel Sambucbn_mp_reduce.o bn_mp_montgomery_setup.o bn_fast_mp_montgomery_reduce.o bn_mp_montgomery_reduce.o \ 53*ebfedea0SLionel Sambucbn_mp_exptmod_fast.o bn_mp_exptmod.o bn_mp_2expt.o bn_mp_n_root.o bn_mp_jacobi.o bn_reverse.o \ 54*ebfedea0SLionel Sambucbn_mp_count_bits.o bn_mp_read_unsigned_bin.o bn_mp_read_signed_bin.o bn_mp_to_unsigned_bin.o \ 55*ebfedea0SLionel Sambucbn_mp_to_signed_bin.o bn_mp_unsigned_bin_size.o bn_mp_signed_bin_size.o \ 56*ebfedea0SLionel Sambucbn_mp_xor.o bn_mp_and.o bn_mp_or.o bn_mp_rand.o bn_mp_montgomery_calc_normalization.o \ 57*ebfedea0SLionel Sambucbn_mp_prime_is_divisible.o bn_prime_tab.o bn_mp_prime_fermat.o bn_mp_prime_miller_rabin.o \ 58*ebfedea0SLionel Sambucbn_mp_prime_is_prime.o bn_mp_prime_next_prime.o bn_mp_dr_reduce.o \ 59*ebfedea0SLionel Sambucbn_mp_dr_is_modulus.o bn_mp_dr_setup.o bn_mp_reduce_setup.o \ 60*ebfedea0SLionel Sambucbn_mp_toom_mul.o bn_mp_toom_sqr.o bn_mp_div_3.o bn_s_mp_exptmod.o \ 61*ebfedea0SLionel Sambucbn_mp_reduce_2k.o bn_mp_reduce_is_2k.o bn_mp_reduce_2k_setup.o \ 62*ebfedea0SLionel Sambucbn_mp_reduce_2k_l.o bn_mp_reduce_is_2k_l.o bn_mp_reduce_2k_setup_l.o \ 63*ebfedea0SLionel Sambucbn_mp_radix_smap.o bn_mp_read_radix.o bn_mp_toradix.o bn_mp_radix_size.o \ 64*ebfedea0SLionel Sambucbn_mp_fread.o bn_mp_fwrite.o bn_mp_cnt_lsb.o bn_error.o \ 65*ebfedea0SLionel Sambucbn_mp_init_multi.o bn_mp_clear_multi.o bn_mp_exteuclid.o bn_mp_toradix_n.o \ 66*ebfedea0SLionel Sambucbn_mp_prime_random_ex.o bn_mp_get_int.o bn_mp_sqrt.o bn_mp_is_square.o bn_mp_init_set.o \ 67*ebfedea0SLionel Sambucbn_mp_init_set_int.o bn_mp_invmod_slow.o bn_mp_prime_rabin_miller_trials.o \ 68*ebfedea0SLionel Sambucbn_mp_to_signed_bin_n.o bn_mp_to_unsigned_bin_n.o 69*ebfedea0SLionel Sambuc 70*ebfedea0SLionel Sambuclibtommath.a: $(OBJECTS) 71*ebfedea0SLionel Sambuc $(AR) $(ARFLAGS) libtommath.a $(OBJECTS) 72*ebfedea0SLionel Sambuc ranlib libtommath.a 73*ebfedea0SLionel Sambuc 74*ebfedea0SLionel Sambuc#make a profiled library (takes a while!!!) 75*ebfedea0SLionel Sambuc# 76*ebfedea0SLionel Sambuc# This will build the library with profile generation 77*ebfedea0SLionel Sambuc# then run the test demo and rebuild the library. 78*ebfedea0SLionel Sambuc# 79*ebfedea0SLionel Sambuc# So far I've seen improvements in the MP math 80*ebfedea0SLionel Sambucprofiled: 81*ebfedea0SLionel Sambuc make -f makefile.icc CFLAGS="$(CFLAGS) -prof_gen -DTESTING" timing 82*ebfedea0SLionel Sambuc ./ltmtest 83*ebfedea0SLionel Sambuc rm -f *.a *.o ltmtest 84*ebfedea0SLionel Sambuc make -f makefile.icc CFLAGS="$(CFLAGS) -prof_use" 85*ebfedea0SLionel Sambuc 86*ebfedea0SLionel Sambuc#make a single object profiled library 87*ebfedea0SLionel Sambucprofiled_single: 88*ebfedea0SLionel Sambuc perl gen.pl 89*ebfedea0SLionel Sambuc $(CC) $(CFLAGS) -prof_gen -DTESTING -c mpi.c -o mpi.o 90*ebfedea0SLionel Sambuc $(CC) $(CFLAGS) -DTESTING -DTIMER demo/demo.c mpi.o -o ltmtest 91*ebfedea0SLionel Sambuc ./ltmtest 92*ebfedea0SLionel Sambuc rm -f *.o ltmtest 93*ebfedea0SLionel Sambuc $(CC) $(CFLAGS) -prof_use -ip -DTESTING -c mpi.c -o mpi.o 94*ebfedea0SLionel Sambuc $(AR) $(ARFLAGS) libtommath.a mpi.o 95*ebfedea0SLionel Sambuc ranlib libtommath.a 96*ebfedea0SLionel Sambuc 97*ebfedea0SLionel Sambucinstall: libtommath.a 98*ebfedea0SLionel Sambuc install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH) 99*ebfedea0SLionel Sambuc install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH) 100*ebfedea0SLionel Sambuc install -g $(GROUP) -o $(USER) $(LIBNAME) $(DESTDIR)$(LIBPATH) 101*ebfedea0SLionel Sambuc install -g $(GROUP) -o $(USER) $(HEADERS) $(DESTDIR)$(INCPATH) 102*ebfedea0SLionel Sambuc 103*ebfedea0SLionel Sambuctest: libtommath.a demo/demo.o 104*ebfedea0SLionel Sambuc $(CC) demo/demo.o libtommath.a -o test 105*ebfedea0SLionel Sambuc 106*ebfedea0SLionel Sambucmtest: test 107*ebfedea0SLionel Sambuc cd mtest ; $(CC) $(CFLAGS) mtest.c -o mtest 108*ebfedea0SLionel Sambuc 109*ebfedea0SLionel Sambuctiming: libtommath.a 110*ebfedea0SLionel Sambuc $(CC) $(CFLAGS) -DTIMER demo/timing.c libtommath.a -o ltmtest 111*ebfedea0SLionel Sambuc 112*ebfedea0SLionel Sambucclean: 113*ebfedea0SLionel Sambuc rm -f *.bat *.pdf *.o *.a *.obj *.lib *.exe *.dll etclib/*.o demo/demo.o test ltmtest mpitest mtest/mtest mtest/mtest.exe \ 114*ebfedea0SLionel Sambuc *.idx *.toc *.log *.aux *.dvi *.lof *.ind *.ilg *.ps *.log *.s mpi.c *.il etc/*.il *.dyn 115*ebfedea0SLionel Sambuc cd etc ; make clean 116*ebfedea0SLionel Sambuc cd pics ; make clean 117