Mercurial > dropbear
annotate Makefile.in @ 146:81bc23421b45 libtommath
Clean up the merge, remove some unneeded files etc
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 19 Dec 2004 16:18:40 +0000 |
parents | cc04b085e7dd |
children | 9063ffd31799 |
rev | line source |
---|---|
139 | 1 #Makefile for GCC |
2 # | |
3 #Tom St Denis | |
4 | |
5 VPATH=@srcdir@ | |
6 srcdir=@srcdir@ | |
7 | |
8 # Dropbear takes flags from the toplevel makefile | |
9 CFLAGS += -I$(srcdir) | |
10 | |
11 #CFLAGS += -I./ -Wall -W -Wshadow -Wsign-compare | |
12 | |
13 #for speed | |
14 #CFLAGS += -O3 -funroll-loops | |
15 | |
16 #for size | |
17 #CFLAGS += -Os | |
18 | |
19 #x86 optimizations [should be valid for any GCC install though] | |
20 #CFLAGS += -fomit-frame-pointer | |
21 | |
146
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
22 #debug |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
23 #CFLAGS += -g3 |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
24 |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
25 VERSION=0.32 |
139 | 26 |
27 default: libtommath.a | |
28 | |
29 #default files to install | |
30 LIBNAME=libtommath.a | |
31 HEADERS=tommath.h | |
32 | |
146
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
33 #LIBPATH-The directory for libtommath to be installed to. |
139 | 34 #INCPATH-The directory to install the header files for libtommath. |
35 #DATAPATH-The directory to install the pdf docs. | |
36 DESTDIR= | |
37 LIBPATH=/usr/lib | |
38 INCPATH=/usr/include | |
39 DATAPATH=/usr/share/doc/libtommath/pdf | |
40 | |
41 OBJECTS=bncore.o bn_mp_init.o bn_mp_clear.o bn_mp_exch.o bn_mp_grow.o bn_mp_shrink.o \ | |
42 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 \ | |
43 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 \ | |
44 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 \ | |
45 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 \ | |
46 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 \ | |
47 bn_mp_add.o bn_mp_sub.o bn_mp_karatsuba_mul.o bn_mp_mul.o bn_mp_karatsuba_sqr.o \ | |
48 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 \ | |
49 bn_mp_div_d.o bn_mp_mod_d.o bn_mp_expt_d.o bn_mp_addmod.o bn_mp_submod.o \ | |
50 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 \ | |
51 bn_mp_reduce.o bn_mp_montgomery_setup.o bn_fast_mp_montgomery_reduce.o bn_mp_montgomery_reduce.o \ | |
52 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 \ | |
53 bn_mp_count_bits.o bn_mp_read_unsigned_bin.o bn_mp_read_signed_bin.o bn_mp_to_unsigned_bin.o \ | |
54 bn_mp_to_signed_bin.o bn_mp_unsigned_bin_size.o bn_mp_signed_bin_size.o \ | |
55 bn_mp_xor.o bn_mp_and.o bn_mp_or.o bn_mp_rand.o bn_mp_montgomery_calc_normalization.o \ | |
56 bn_mp_prime_is_divisible.o bn_prime_tab.o bn_mp_prime_fermat.o bn_mp_prime_miller_rabin.o \ | |
57 bn_mp_prime_is_prime.o bn_mp_prime_next_prime.o bn_mp_dr_reduce.o \ | |
58 bn_mp_dr_is_modulus.o bn_mp_dr_setup.o bn_mp_reduce_setup.o \ | |
59 bn_mp_toom_mul.o bn_mp_toom_sqr.o bn_mp_div_3.o bn_s_mp_exptmod.o \ | |
60 bn_mp_reduce_2k.o bn_mp_reduce_is_2k.o bn_mp_reduce_2k_setup.o \ | |
61 bn_mp_radix_smap.o bn_mp_read_radix.o bn_mp_toradix.o bn_mp_radix_size.o \ | |
62 bn_mp_fread.o bn_mp_fwrite.o bn_mp_cnt_lsb.o bn_error.o \ | |
146
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
63 bn_mp_init_multi.o bn_mp_clear_multi.o bn_mp_exteuclid.o bn_mp_toradix_n.o \ |
139 | 64 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 \ |
146
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
65 bn_mp_init_set_int.o bn_mp_invmod_slow.o bn_mp_prime_rabin_miller_trials.o |
139 | 66 |
67 libtommath.a: $(OBJECTS) | |
68 $(AR) $(ARFLAGS) libtommath.a $(OBJECTS) | |
69 $(RANLIB) libtommath.a | |
70 | |
146
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
71 |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
72 #make a profiled library (takes a while!!!) |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
73 # |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
74 # This will build the library with profile generation |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
75 # then run the test demo and rebuild the library. |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
76 # |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
77 # So far I've seen improvements in the MP math |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
78 profiled: |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
79 make CFLAGS="$(CFLAGS) -fprofile-arcs -DTESTING" timing |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
80 ./ltmtest |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
81 rm -f *.a *.o ltmtest |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
82 make CFLAGS="$(CFLAGS) -fbranch-probabilities" |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
83 |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
84 #make a single object profiled library |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
85 profiled_single: |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
86 perl gen.pl |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
87 $(CC) $(CFLAGS) -fprofile-arcs -DTESTING -c mpi.c -o mpi.o |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
88 $(CC) $(CFLAGS) -DTESTING -DTIMER demo/timing.c mpi.o -o ltmtest |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
89 ./ltmtest |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
90 rm -f *.o ltmtest |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
91 $(CC) $(CFLAGS) -fbranch-probabilities -DTESTING -c mpi.c -o mpi.o |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
92 $(AR) $(ARFLAGS) libtommath.a mpi.o |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
93 ranlib libtommath.a |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
94 |
139 | 95 install: libtommath.a |
96 install -d -g root -o root $(DESTDIR)$(LIBPATH) | |
97 install -d -g root -o root $(DESTDIR)$(INCPATH) | |
98 install -g root -o root $(LIBNAME) $(DESTDIR)$(LIBPATH) | |
99 install -g root -o root $(HEADERS) $(DESTDIR)$(INCPATH) | |
100 | |
101 test: libtommath.a demo/demo.o | |
102 $(CC) demo/demo.o libtommath.a -o test | |
103 | |
104 mtest: test | |
105 cd mtest ; $(CC) $(CFLAGS) mtest.c -o mtest -s | |
106 | |
107 timing: libtommath.a | |
146
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
108 $(CC) $(CFLAGS) -DTIMER demo/timing.c libtommath.a -o ltmtest -s |
139 | 109 |
110 # makes the LTM book DVI file, requires tetex, perl and makeindex [part of tetex I think] | |
111 docdvi: tommath.src | |
112 cd pics ; make | |
113 echo "hello" > tommath.ind | |
114 perl booker.pl | |
115 latex tommath > /dev/null | |
116 latex tommath > /dev/null | |
117 makeindex tommath | |
118 latex tommath > /dev/null | |
119 | |
120 # poster, makes the single page PDF poster | |
121 poster: poster.tex | |
122 pdflatex poster | |
123 rm -f poster.aux poster.log | |
124 | |
125 # makes the LTM book PDF file, requires tetex, cleans up the LaTeX temp files | |
126 docs: docdvi | |
127 dvipdf tommath | |
128 rm -f tommath.log tommath.aux tommath.dvi tommath.idx tommath.toc tommath.lof tommath.ind tommath.ilg | |
129 cd pics ; make clean | |
130 | |
131 #LTM user manual | |
132 mandvi: bn.tex | |
133 echo "hello" > bn.ind | |
134 latex bn > /dev/null | |
135 latex bn > /dev/null | |
136 makeindex bn | |
137 latex bn > /dev/null | |
138 | |
139 #LTM user manual [pdf] | |
140 manual: mandvi | |
141 pdflatex bn >/dev/null | |
142 rm -f bn.aux bn.dvi bn.log bn.idx bn.lof bn.out bn.toc | |
146
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
143 |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
144 pretty: |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
145 perl pretty.build |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
146 |
139 | 147 clean: |
148 -rm -f *.bat *.pdf *.o *.a *.obj *.lib *.exe *.dll etclib/*.o demo/demo.o test ltmtest mpitest mtest/mtest mtest/mtest.exe \ | |
146
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
149 *.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 |
81bc23421b45
Clean up the merge, remove some unneeded files etc
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
150 -rm -rf .libs |
139 | 151 -cd etc && make clean |
152 -cd pics && make clean | |
153 | |
154 zipup: clean manual poster docs | |
155 perl gen.pl ; mv mpi.c pre_gen/ ; \ | |
156 cd .. ; rm -rf ltm* libtommath-$(VERSION) ; mkdir libtommath-$(VERSION) ; \ | |
157 cp -R ./libtommath/* ./libtommath-$(VERSION)/ ; \ | |
158 tar -c libtommath-$(VERSION)/* | bzip2 -9vvc > ltm-$(VERSION).tar.bz2 ; \ | |
159 zip -9 -r ltm-$(VERSION).zip libtommath-$(VERSION)/* |