[BACK]Return to Makefile.am CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gmp / mpfr

Annotation of OpenXM_contrib/gmp/mpfr/Makefile.am, Revision 1.1.1.2

1.1       maekawa     1: ## Process this file with automake to generate Makefile.in
                      2:
1.1.1.2 ! ohara       3: # Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
1.1       maekawa     4: #
                      5: # This file is part of the GNU MP Library.
                      6: #
                      7: # The GNU MP Library is free software; you can redistribute it and/or modify
                      8: # it under the terms of the GNU Library General Public License as published by
                      9: # the Free Software Foundation; either version 2 of the License, or (at your
                     10: # option) any later version.
                     11: #
                     12: # The GNU MP Library is distributed in the hope that it will be useful, but
                     13: # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
                     14: # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
                     15: # License for more details.
                     16: #
                     17: # You should have received a copy of the GNU Library General Public License
                     18: # along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
                     19: # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
                     20: # MA 02111-1307, USA.
                     21:
                     22:
1.1.1.2 ! ohara      23: # Only a libmpfr.a is built, since upward binary compatibility is not yet
        !            24: # guaranteed.
        !            25:
1.1       maekawa    26:
1.1.1.2 ! ohara      27: AUTOMAKE_OPTIONS = gnu no-dependencies $(top_builddir)/ansi2knr
        !            28: SUBDIRS = tests
1.1       maekawa    29:
                     30: INCLUDES = -I$(top_srcdir)
1.1.1.2 ! ohara      31: CFLAGS = @MPFR_CFLAGS@
        !            32: LIBS = @MPFR_LIBS@
1.1       maekawa    33:
                     34: if WANT_MPFR
1.1.1.2 ! ohara      35: lib_LIBRARIES = libmpfr.a
        !            36: include_HEADERS = mpfr.h mpf2mpfr.h
1.1       maekawa    37: endif
                     38:
1.1.1.2 ! ohara      39: # FIXME: Automake (version 1.5) doesn't allow conditionalized info_TEXINFOS,
        !            40: # see top level Makefile.am for the workaround.
        !            41: info_TEXINFOS = mpfr.texi
        !            42: TEXINFO_TEX = ../texinfo.tex
        !            43:
        !            44: # Override automake default AR=ar with the value from GMP_PROG_AR.
        !            45: AR = @AR@
        !            46:
        !            47: libmpfr_a_SOURCES = mpfr.h mpf2mpfr.h mpfr-impl.h mpfr-math.h mpfr-test.h exceptions.c save_expo.c extract.c uceil_exp2.c uceil_log2.c ufloor_log2.c add.c add1.c add_one_ulp.c add_ui.c agm.c clear.c cmp.c cmp_abs.c cmp_ui.c div_2exp.c div_2si.c div_2ui.c div.c div_ui.c dump.c eq.c exp2.c exp3.c exp.c get_d.c get_str.c init.c inp_str.c isinteger.c isinf.c isnan.c isnum.c const_log2.c log.c mul_2exp.c mul_2si.c mul_2ui.c mul.c mul_ui.c neg.c out_str.c const_pi.c pow.c pow_si.c pow_ui.c print_raw.c print_rnd_mode.c random2.c random.c reldiff.c rnd_mode.c round_prec.c set.c set_d.c set_dfl_prec.c set_rnd.c set_f.c set_prc_raw.c set_prec.c set_q.c set_si.c set_str.c set_str_raw.c set_ui.c set_z.c sqrt.c sqrt_ui.c sub.c sub1.c sub_one_ulp.c sub_ui.c rint.c ui_div.c ui_sub.c urandomb.c get_z_exp.c swap.c  factorial.c cosh.c sinh.c tanh.c acosh.c asinh.c atanh.c atan.c cmp2.c exp_2.c asin.c const_euler.c cos.c sin.c tan.c fma.c hypot.c log1p.c expm1.c log2.c log10.c ui_pow.c ui_pow_ui.c minmax.c dim.c copysign.c gmp_op.c init2.c acos.c sin_cos.c set_nan.c set_inf.c
        !            48:
        !            49: libmpfr_a_LIBADD = @LIBOBJS@
1.1       maekawa    50:
1.1.1.2 ! ohara      51: EXTRA_DIST = BUGS generic.c

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>