~ubuntu-branches/debian/lenny/dropbear/lenny

« back to all changes in this revision

Viewing changes to libtommath/makefile.icc

  • Committer: Bazaar Package Importer
  • Author(s): Gerrit Pape
  • Date: 2005-05-25 22:38:17 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050525223817-fdl653extybmz1zb
Tags: 0.45-3
* debian/dropbear.init: init script prints human readable message in case
  it's disabled (closes: #309099).
* debian/dropbear.postinst: configure: restart service through init script
  instead of start.
* debian/dropbear.prerm: set -u -> set -e.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#Makefile for ICC
 
2
#
 
3
#Tom St Denis
 
4
CC=icc
 
5
 
 
6
CFLAGS  +=  -I./
 
7
 
 
8
# optimize for SPEED
 
9
#
 
10
# -mcpu= can be pentium, pentiumpro (covers PII through PIII) or pentium4
 
11
# -ax?   specifies make code specifically for ? but compatible with IA-32
 
12
# -x?    specifies compile solely for ? [not specifically IA-32 compatible]
 
13
#
 
14
# where ? is 
 
15
#   K - PIII
 
16
#   W - first P4 [Williamette]
 
17
#   N - P4 Northwood
 
18
#   P - P4 Prescott
 
19
#   B - Blend of P4 and PM [mobile]
 
20
#
 
21
# Default to just generic max opts
 
22
CFLAGS += -O3 -xN
 
23
 
 
24
default: libtommath.a
 
25
 
 
26
#default files to install
 
27
LIBNAME=libtommath.a
 
28
HEADERS=tommath.h
 
29
 
 
30
#LIBPATH-The directory for libtomcrypt to be installed to.
 
31
#INCPATH-The directory to install the header files for libtommath.
 
32
#DATAPATH-The directory to install the pdf docs.
 
33
DESTDIR=
 
34
LIBPATH=/usr/lib
 
35
INCPATH=/usr/include
 
36
DATAPATH=/usr/share/doc/libtommath/pdf
 
37
 
 
38
OBJECTS=bncore.o bn_mp_init.o bn_mp_clear.o bn_mp_exch.o bn_mp_grow.o bn_mp_shrink.o \
 
39
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 \
 
40
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 \
 
41
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 \
 
42
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 \
 
43
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 \
 
44
bn_mp_add.o bn_mp_sub.o bn_mp_karatsuba_mul.o bn_mp_mul.o bn_mp_karatsuba_sqr.o \
 
45
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 \
 
46
bn_mp_div_d.o bn_mp_mod_d.o bn_mp_expt_d.o bn_mp_addmod.o bn_mp_submod.o \
 
47
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 \
 
48
bn_mp_reduce.o bn_mp_montgomery_setup.o bn_fast_mp_montgomery_reduce.o bn_mp_montgomery_reduce.o \
 
49
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 \
 
50
bn_mp_count_bits.o bn_mp_read_unsigned_bin.o bn_mp_read_signed_bin.o bn_mp_to_unsigned_bin.o \
 
51
bn_mp_to_signed_bin.o bn_mp_unsigned_bin_size.o bn_mp_signed_bin_size.o  \
 
52
bn_mp_xor.o bn_mp_and.o bn_mp_or.o bn_mp_rand.o bn_mp_montgomery_calc_normalization.o \
 
53
bn_mp_prime_is_divisible.o bn_prime_tab.o bn_mp_prime_fermat.o bn_mp_prime_miller_rabin.o \
 
54
bn_mp_prime_is_prime.o bn_mp_prime_next_prime.o bn_mp_dr_reduce.o \
 
55
bn_mp_dr_is_modulus.o bn_mp_dr_setup.o bn_mp_reduce_setup.o \
 
56
bn_mp_toom_mul.o bn_mp_toom_sqr.o bn_mp_div_3.o bn_s_mp_exptmod.o \
 
57
bn_mp_reduce_2k.o bn_mp_reduce_is_2k.o bn_mp_reduce_2k_setup.o \
 
58
bn_mp_radix_smap.o bn_mp_read_radix.o bn_mp_toradix.o bn_mp_radix_size.o \
 
59
bn_mp_fread.o bn_mp_fwrite.o bn_mp_cnt_lsb.o bn_error.o \
 
60
bn_mp_init_multi.o bn_mp_clear_multi.o bn_mp_exteuclid.o bn_mp_toradix_n.o \
 
61
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 \
 
62
bn_mp_init_set_int.o bn_mp_invmod_slow.o bn_mp_prime_rabin_miller_trials.o
 
63
 
 
64
libtommath.a:  $(OBJECTS)
 
65
        $(AR) $(ARFLAGS) libtommath.a $(OBJECTS)
 
66
        ranlib libtommath.a
 
67
 
 
68
#make a profiled library (takes a while!!!)
 
69
#
 
70
# This will build the library with profile generation
 
71
# then run the test demo and rebuild the library.
 
72
 
73
# So far I've seen improvements in the MP math
 
74
profiled:
 
75
        make -f makefile.icc CFLAGS="$(CFLAGS) -prof_gen -DTESTING" timing
 
76
        ./ltmtest
 
77
        rm -f *.a *.o ltmtest
 
78
        make -f makefile.icc CFLAGS="$(CFLAGS) -prof_use"
 
79
 
 
80
#make a single object profiled library 
 
81
profiled_single:
 
82
        perl gen.pl
 
83
        $(CC) $(CFLAGS) -prof_gen -DTESTING -c mpi.c -o mpi.o
 
84
        $(CC) $(CFLAGS) -DTESTING -DTIMER demo/demo.c mpi.o -o ltmtest
 
85
        ./ltmtest
 
86
        rm -f *.o ltmtest
 
87
        $(CC) $(CFLAGS) -prof_use -ip -DTESTING -c mpi.c -o mpi.o
 
88
        $(AR) $(ARFLAGS) libtommath.a mpi.o
 
89
        ranlib libtommath.a     
 
90
 
 
91
install: libtommath.a
 
92
        install -d -g root -o root $(DESTDIR)$(LIBPATH)
 
93
        install -d -g root -o root $(DESTDIR)$(INCPATH)
 
94
        install -g root -o root $(LIBNAME) $(DESTDIR)$(LIBPATH)
 
95
        install -g root -o root $(HEADERS) $(DESTDIR)$(INCPATH)
 
96
 
 
97
test: libtommath.a demo/demo.o
 
98
        $(CC) demo/demo.o libtommath.a -o test
 
99
        
 
100
mtest: test     
 
101
        cd mtest ; $(CC) $(CFLAGS) mtest.c -o mtest
 
102
        
 
103
timing: libtommath.a
 
104
        $(CC) $(CFLAGS) -DTIMER demo/timing.c libtommath.a -o ltmtest
 
105
 
 
106
clean:
 
107
        rm -f *.bat *.pdf *.o *.a *.obj *.lib *.exe *.dll etclib/*.o demo/demo.o test ltmtest mpitest mtest/mtest mtest/mtest.exe \
 
108
        *.idx *.toc *.log *.aux *.dvi *.lof *.ind *.ilg *.ps *.log *.s mpi.c *.il etc/*.il *.dyn
 
109
        cd etc ; make clean
 
110
        cd pics ; make clean