annotate makefile @ 201:c0bf626ee437 libtommath

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