1 | ## Process this file with automake to generate Makefile.in |
---|
2 | |
---|
3 | # Copyright 1996, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, |
---|
4 | # Inc. |
---|
5 | # |
---|
6 | # This file is part of the GNU MP Library. |
---|
7 | # |
---|
8 | # The GNU MP Library is free software; you can redistribute it and/or modify |
---|
9 | # it under the terms of the GNU Lesser General Public License as published by |
---|
10 | # the Free Software Foundation; either version 2.1 of the License, or (at your |
---|
11 | # option) any later version. |
---|
12 | # |
---|
13 | # The GNU MP Library is distributed in the hope that it will be useful, but |
---|
14 | # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
---|
15 | # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public |
---|
16 | # License for more details. |
---|
17 | # |
---|
18 | # You should have received a copy of the GNU Lesser General Public License |
---|
19 | # along with the GNU MP Library; see the file COPYING.LIB. If not, write to |
---|
20 | # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, |
---|
21 | # MA 02111-1307, USA. |
---|
22 | |
---|
23 | |
---|
24 | AUTOMAKE_OPTIONS = gnu no-dependencies $(top_builddir)/ansi2knr |
---|
25 | |
---|
26 | INCLUDES = -D__GMP_WITHIN_GMP -I$(top_srcdir) |
---|
27 | |
---|
28 | noinst_LTLIBRARIES = libmpz.la |
---|
29 | libmpz_la_SOURCES = aors.h aors_ui.h fits_s.h mul_i.h \ |
---|
30 | add.c add_ui.c abs.c aorsmul.c aorsmul_i.c and.c array_init.c \ |
---|
31 | bin_ui.c bin_uiui.c cdiv_q.c \ |
---|
32 | cdiv_q_ui.c cdiv_qr.c cdiv_qr_ui.c cdiv_r.c cdiv_r_ui.c cdiv_ui.c \ |
---|
33 | cfdiv_q_2exp.c cfdiv_r_2exp.c \ |
---|
34 | clear.c clrbit.c \ |
---|
35 | cmp.c cmp_d.c cmp_si.c cmp_ui.c cmpabs.c cmpabs_d.c cmpabs_ui.c \ |
---|
36 | com.c \ |
---|
37 | cong.c cong_2exp.c cong_ui.c \ |
---|
38 | divexact.c divegcd.c dive_ui.c divis.c divis_ui.c divis_2exp.c \ |
---|
39 | dump.c export.c fac_ui.c fdiv_q.c fdiv_q_ui.c \ |
---|
40 | fdiv_qr.c fdiv_qr_ui.c fdiv_r.c fdiv_r_ui.c fdiv_ui.c \ |
---|
41 | fib_ui.c fib2_ui.c \ |
---|
42 | fits_sint.c fits_slong.c fits_sshort.c \ |
---|
43 | fits_uint.c fits_ulong.c fits_ushort.c \ |
---|
44 | gcd.c gcd_ui.c gcdext.c get_d.c get_d_2exp.c get_si.c \ |
---|
45 | get_str.c get_ui.c getlimbn.c hamdist.c \ |
---|
46 | import.c init.c init2.c inp_raw.c inp_str.c \ |
---|
47 | invert.c ior.c iset.c iset_d.c iset_si.c iset_str.c iset_ui.c \ |
---|
48 | jacobi.c kronsz.c kronuz.c kronzs.c kronzu.c \ |
---|
49 | lcm.c lcm_ui.c lucnum_ui.c lucnum2_ui.c millerrabin.c \ |
---|
50 | mod.c mul.c mul_2exp.c mul_si.c mul_ui.c n_pow_ui.c neg.c nextprime.c \ |
---|
51 | out_raw.c out_str.c perfpow.c perfsqr.c popcount.c pow_ui.c powm.c \ |
---|
52 | powm_ui.c pprime_p.c \ |
---|
53 | random.c random2.c realloc.c realloc2.c remove.c root.c rrandomb.c \ |
---|
54 | scan0.c scan1.c set.c set_d.c set_f.c set_q.c set_si.c set_str.c \ |
---|
55 | set_ui.c setbit.c size.c sizeinbase.c sqrt.c sqrtrem.c sub.c sub_ui.c \ |
---|
56 | swap.c tdiv_ui.c tdiv_q.c tdiv_q_2exp.c tdiv_q_ui.c tdiv_qr.c \ |
---|
57 | tdiv_qr_ui.c tdiv_r.c tdiv_r_2exp.c tdiv_r_ui.c tstbit.c ui_pow_ui.c \ |
---|
58 | ui_sub.c urandomb.c urandomm.c xor.c |
---|