xref: /minix3/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/makefile.bcc (revision ebfedea0ce5bbe81e252ddf32d732e40fb633fae)
1*ebfedea0SLionel Sambuc#
2*ebfedea0SLionel Sambuc# Borland C++Builder Makefile (makefile.bcc)
3*ebfedea0SLionel Sambuc#
4*ebfedea0SLionel Sambuc
5*ebfedea0SLionel Sambuc
6*ebfedea0SLionel SambucLIB = tlib
7*ebfedea0SLionel SambucCC = bcc32
8*ebfedea0SLionel SambucCFLAGS = -c -O2 -I.
9*ebfedea0SLionel Sambuc
10*ebfedea0SLionel SambucOBJECTS=bncore.obj bn_mp_init.obj bn_mp_clear.obj bn_mp_exch.obj bn_mp_grow.obj bn_mp_shrink.obj \
11*ebfedea0SLionel Sambucbn_mp_clamp.obj bn_mp_zero.obj  bn_mp_set.obj bn_mp_set_int.obj bn_mp_init_size.obj bn_mp_copy.obj \
12*ebfedea0SLionel Sambucbn_mp_init_copy.obj bn_mp_abs.obj bn_mp_neg.obj bn_mp_cmp_mag.obj bn_mp_cmp.obj bn_mp_cmp_d.obj \
13*ebfedea0SLionel Sambucbn_mp_rshd.obj bn_mp_lshd.obj bn_mp_mod_2d.obj bn_mp_div_2d.obj bn_mp_mul_2d.obj bn_mp_div_2.obj \
14*ebfedea0SLionel Sambucbn_mp_mul_2.obj bn_s_mp_add.obj bn_s_mp_sub.obj bn_fast_s_mp_mul_digs.obj bn_s_mp_mul_digs.obj \
15*ebfedea0SLionel Sambucbn_fast_s_mp_mul_high_digs.obj bn_s_mp_mul_high_digs.obj bn_fast_s_mp_sqr.obj bn_s_mp_sqr.obj \
16*ebfedea0SLionel Sambucbn_mp_add.obj bn_mp_sub.obj bn_mp_karatsuba_mul.obj bn_mp_mul.obj bn_mp_karatsuba_sqr.obj \
17*ebfedea0SLionel Sambucbn_mp_sqr.obj bn_mp_div.obj bn_mp_mod.obj bn_mp_add_d.obj bn_mp_sub_d.obj bn_mp_mul_d.obj \
18*ebfedea0SLionel Sambucbn_mp_div_d.obj bn_mp_mod_d.obj bn_mp_expt_d.obj bn_mp_addmod.obj bn_mp_submod.obj \
19*ebfedea0SLionel Sambucbn_mp_mulmod.obj bn_mp_sqrmod.obj bn_mp_gcd.obj bn_mp_lcm.obj bn_fast_mp_invmod.obj bn_mp_invmod.obj \
20*ebfedea0SLionel Sambucbn_mp_reduce.obj bn_mp_montgomery_setup.obj bn_fast_mp_montgomery_reduce.obj bn_mp_montgomery_reduce.obj \
21*ebfedea0SLionel Sambucbn_mp_exptmod_fast.obj bn_mp_exptmod.obj bn_mp_2expt.obj bn_mp_n_root.obj bn_mp_jacobi.obj bn_reverse.obj \
22*ebfedea0SLionel Sambucbn_mp_count_bits.obj bn_mp_read_unsigned_bin.obj bn_mp_read_signed_bin.obj bn_mp_to_unsigned_bin.obj \
23*ebfedea0SLionel Sambucbn_mp_to_signed_bin.obj bn_mp_unsigned_bin_size.obj bn_mp_signed_bin_size.obj  \
24*ebfedea0SLionel Sambucbn_mp_xor.obj bn_mp_and.obj bn_mp_or.obj bn_mp_rand.obj bn_mp_montgomery_calc_normalization.obj \
25*ebfedea0SLionel Sambucbn_mp_prime_is_divisible.obj bn_prime_tab.obj bn_mp_prime_fermat.obj bn_mp_prime_miller_rabin.obj \
26*ebfedea0SLionel Sambucbn_mp_prime_is_prime.obj bn_mp_prime_next_prime.obj bn_mp_dr_reduce.obj \
27*ebfedea0SLionel Sambucbn_mp_dr_is_modulus.obj bn_mp_dr_setup.obj bn_mp_reduce_setup.obj \
28*ebfedea0SLionel Sambucbn_mp_toom_mul.obj bn_mp_toom_sqr.obj bn_mp_div_3.obj bn_s_mp_exptmod.obj \
29*ebfedea0SLionel Sambucbn_mp_reduce_2k.obj bn_mp_reduce_is_2k.obj bn_mp_reduce_2k_setup.obj \
30*ebfedea0SLionel Sambucbn_mp_reduce_2k_l.obj bn_mp_reduce_is_2k_l.obj bn_mp_reduce_2k_setup_l.obj \
31*ebfedea0SLionel Sambucbn_mp_radix_smap.obj bn_mp_read_radix.obj bn_mp_toradix.obj bn_mp_radix_size.obj \
32*ebfedea0SLionel Sambucbn_mp_fread.obj bn_mp_fwrite.obj bn_mp_cnt_lsb.obj bn_error.obj \
33*ebfedea0SLionel Sambucbn_mp_init_multi.obj bn_mp_clear_multi.obj bn_mp_exteuclid.obj bn_mp_toradix_n.obj \
34*ebfedea0SLionel Sambucbn_mp_prime_random_ex.obj bn_mp_get_int.obj bn_mp_sqrt.obj bn_mp_is_square.obj \
35*ebfedea0SLionel Sambucbn_mp_init_set.obj bn_mp_init_set_int.obj bn_mp_invmod_slow.obj bn_mp_prime_rabin_miller_trials.obj \
36*ebfedea0SLionel Sambucbn_mp_to_signed_bin_n.obj bn_mp_to_unsigned_bin_n.obj
37*ebfedea0SLionel Sambuc
38*ebfedea0SLionel SambucTARGET = libtommath.lib
39*ebfedea0SLionel Sambuc
40*ebfedea0SLionel Sambuc$(TARGET): $(OBJECTS)
41*ebfedea0SLionel Sambuc
42*ebfedea0SLionel Sambuc.c.obj:
43*ebfedea0SLionel Sambuc	$(CC) $(CFLAGS) $<
44*ebfedea0SLionel Sambuc	$(LIB) $(TARGET) -+$@
45