annotate Makefile.in @ 139:cc04b085e7dd libtommath

Pristine compilation works.
author Matt Johnston <matt@ucc.asn.au>
date Fri, 17 Dec 2004 06:27:22 +0000
parents
children 81bc23421b45
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
139
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
1 #Makefile for GCC
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
2 #
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
3 #Tom St Denis
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
4
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
5 VPATH=@srcdir@
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
6 srcdir=@srcdir@
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
7
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
8 # Dropbear takes flags from the toplevel makefile
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
9 CFLAGS += -I$(srcdir)
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
10
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
11 #CFLAGS += -I./ -Wall -W -Wshadow -Wsign-compare
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
12
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
13 #for speed
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
14 #CFLAGS += -O3 -funroll-loops
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
15
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
16 #for size
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
17 #CFLAGS += -Os
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
18
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
19 #x86 optimizations [should be valid for any GCC install though]
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
20 #CFLAGS += -fomit-frame-pointer
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
21
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
22 VERSION=0.30
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
23
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
24 default: libtommath.a
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
25
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
26 #default files to install
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
27 LIBNAME=libtommath.a
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
28 HEADERS=tommath.h
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
29
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
30 #LIBPATH-The directory for libtomcrypt to be installed to.
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
31 #INCPATH-The directory to install the header files for libtommath.
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
32 #DATAPATH-The directory to install the pdf docs.
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
33 DESTDIR=
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
34 LIBPATH=/usr/lib
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
35 INCPATH=/usr/include
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
36 DATAPATH=/usr/share/doc/libtommath/pdf
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
37
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
38 OBJECTS=bncore.o bn_mp_init.o bn_mp_clear.o bn_mp_exch.o bn_mp_grow.o bn_mp_shrink.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
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 \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
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 \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
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 \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
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 \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
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 \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
44 bn_mp_add.o bn_mp_sub.o bn_mp_karatsuba_mul.o bn_mp_mul.o bn_mp_karatsuba_sqr.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
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 \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
46 bn_mp_div_d.o bn_mp_mod_d.o bn_mp_expt_d.o bn_mp_addmod.o bn_mp_submod.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
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 \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
48 bn_mp_reduce.o bn_mp_montgomery_setup.o bn_fast_mp_montgomery_reduce.o bn_mp_montgomery_reduce.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
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 \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
50 bn_mp_count_bits.o bn_mp_read_unsigned_bin.o bn_mp_read_signed_bin.o bn_mp_to_unsigned_bin.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
51 bn_mp_to_signed_bin.o bn_mp_unsigned_bin_size.o bn_mp_signed_bin_size.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
52 bn_mp_xor.o bn_mp_and.o bn_mp_or.o bn_mp_rand.o bn_mp_montgomery_calc_normalization.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
53 bn_mp_prime_is_divisible.o bn_prime_tab.o bn_mp_prime_fermat.o bn_mp_prime_miller_rabin.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
54 bn_mp_prime_is_prime.o bn_mp_prime_next_prime.o bn_mp_dr_reduce.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
55 bn_mp_dr_is_modulus.o bn_mp_dr_setup.o bn_mp_reduce_setup.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
56 bn_mp_toom_mul.o bn_mp_toom_sqr.o bn_mp_div_3.o bn_s_mp_exptmod.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
57 bn_mp_reduce_2k.o bn_mp_reduce_is_2k.o bn_mp_reduce_2k_setup.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
58 bn_mp_radix_smap.o bn_mp_read_radix.o bn_mp_toradix.o bn_mp_radix_size.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
59 bn_mp_fread.o bn_mp_fwrite.o bn_mp_cnt_lsb.o bn_error.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
60 bn_mp_init_multi.o bn_mp_clear_multi.o bn_prime_sizes_tab.o bn_mp_exteuclid.o bn_mp_toradix_n.o \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
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 \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
62 bn_mp_init_set_int.o
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
63
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
64 libtommath.a: $(OBJECTS)
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
65 $(AR) $(ARFLAGS) libtommath.a $(OBJECTS)
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
66 $(RANLIB) libtommath.a
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
67
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
68 install: libtommath.a
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
69 install -d -g root -o root $(DESTDIR)$(LIBPATH)
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
70 install -d -g root -o root $(DESTDIR)$(INCPATH)
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
71 install -g root -o root $(LIBNAME) $(DESTDIR)$(LIBPATH)
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
72 install -g root -o root $(HEADERS) $(DESTDIR)$(INCPATH)
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
73
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
74 test: libtommath.a demo/demo.o
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
75 $(CC) demo/demo.o libtommath.a -o test
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
76
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
77 mtest: test
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
78 cd mtest ; $(CC) $(CFLAGS) mtest.c -o mtest -s
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
79
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
80 timing: libtommath.a
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
81 $(CC) $(CFLAGS) -DTIMER demo/demo.c libtommath.a -o ltmtest -s
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
82
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
83 # makes the LTM book DVI file, requires tetex, perl and makeindex [part of tetex I think]
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
84 docdvi: tommath.src
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
85 cd pics ; make
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
86 echo "hello" > tommath.ind
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
87 perl booker.pl
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
88 latex tommath > /dev/null
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
89 latex tommath > /dev/null
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
90 makeindex tommath
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
91 latex tommath > /dev/null
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
92
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
93 # poster, makes the single page PDF poster
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
94 poster: poster.tex
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
95 pdflatex poster
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
96 rm -f poster.aux poster.log
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
97
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
98 # makes the LTM book PDF file, requires tetex, cleans up the LaTeX temp files
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
99 docs: docdvi
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
100 dvipdf tommath
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
101 rm -f tommath.log tommath.aux tommath.dvi tommath.idx tommath.toc tommath.lof tommath.ind tommath.ilg
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
102 cd pics ; make clean
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
103
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
104 #LTM user manual
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
105 mandvi: bn.tex
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
106 echo "hello" > bn.ind
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
107 latex bn > /dev/null
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
108 latex bn > /dev/null
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
109 makeindex bn
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
110 latex bn > /dev/null
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
111
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
112 #LTM user manual [pdf]
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
113 manual: mandvi
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
114 pdflatex bn >/dev/null
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
115 rm -f bn.aux bn.dvi bn.log bn.idx bn.lof bn.out bn.toc
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
116
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
117 clean:
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
118 -rm -f *.bat *.pdf *.o *.a *.obj *.lib *.exe *.dll etclib/*.o demo/demo.o test ltmtest mpitest mtest/mtest mtest/mtest.exe \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
119 *.idx *.toc *.log *.aux *.dvi *.lof *.ind *.ilg *.ps *.log *.s mpi.c
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
120 -cd etc && make clean
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
121 -cd pics && make clean
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
122
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
123 zipup: clean manual poster docs
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
124 perl gen.pl ; mv mpi.c pre_gen/ ; \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
125 cd .. ; rm -rf ltm* libtommath-$(VERSION) ; mkdir libtommath-$(VERSION) ; \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
126 cp -R ./libtommath/* ./libtommath-$(VERSION)/ ; \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
127 tar -c libtommath-$(VERSION)/* | bzip2 -9vvc > ltm-$(VERSION).tar.bz2 ; \
cc04b085e7dd Pristine compilation works.
Matt Johnston <matt@ucc.asn.au>
parents:
diff changeset
128 zip -9 -r ltm-$(VERSION).zip libtommath-$(VERSION)/*