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

Annotation of OpenXM_contrib/gmp/mpz/Makefile.am, Revision 1.1.1.1

1.1       maekawa     1: ## Process this file with automake to generate Makefile.in
                      2:
                      3: # Copyright (C) 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
                      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 Lesser General Public License as published by
                      9: # the Free Software Foundation; either version 2.1 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 Lesser General Public
                     15: # License for more details.
                     16: #
                     17: # You should have received a copy of the GNU Lesser 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:
                     23: AUTOMAKE_OPTIONS = gnu no-dependencies
                     24:
                     25: SUBDIRS = tests
                     26:
                     27: INCLUDES = -I$(top_srcdir) -DOPERATION_$*
                     28:
                     29: noinst_LTLIBRARIES = libmpz.la
                     30: libmpz_la_SOURCES = \
                     31:   abs.c add.c add_ui.c addmul_ui.c and.c array_init.c \
                     32:   bin_ui.c bin_uiui.c cdiv_q.c \
                     33:   cdiv_q_ui.c cdiv_qr.c cdiv_qr_ui.c cdiv_r.c cdiv_r_ui.c cdiv_ui.c \
                     34:   clear.c clrbit.c cmp.c cmp_si.c cmp_ui.c cmpabs.c cmpabs_ui.c com.c \
                     35:   divexact.c dump.c fac_ui.c fdiv_q.c fdiv_q_2exp.c fdiv_q_ui.c \
                     36:   fdiv_qr.c fdiv_qr_ui.c fdiv_r.c fdiv_r_2exp.c fdiv_r_ui.c fdiv_ui.c \
                     37:   fib_ui.c fits_sint_p.c fits_slong_p.c fits_sshort_p.c fits_uint_p.c \
                     38:   fits_ulong_p.c fits_ushort_p.c gcd.c gcd_ui.c gcdext.c get_d.c get_si.c \
                     39:   get_str.c get_ui.c getlimbn.c hamdist.c init.c inp_raw.c inp_str.c \
                     40:   invert.c ior.c iset.c iset_d.c iset_si.c iset_str.c iset_ui.c \
                     41:   jacobi.c kronsz.c kronuz.c kronzs.c kronzu.c \
                     42:   lcm.c legendre.c mod.c mul.c mul_2exp.c neg.c nextprime.c \
                     43:   out_raw.c out_str.c perfpow.c perfsqr.c popcount.c pow_ui.c powm.c \
                     44:   powm_ui.c pprime_p.c random.c random2.c realloc.c remove.c root.c rrandomb.c \
                     45:   scan0.c scan1.c set.c set_d.c set_f.c set_q.c set_si.c set_str.c \
                     46:   set_ui.c setbit.c size.c sizeinbase.c sqrt.c sqrtrem.c sub.c \
                     47:   sub_ui.c swap.c tdiv_ui.c tdiv_q.c tdiv_q_2exp.c tdiv_q_ui.c tdiv_qr.c \
                     48:   tdiv_qr_ui.c tdiv_r.c tdiv_r_2exp.c tdiv_r_ui.c tstbit.c ui_pow_ui.c \
                     49:   urandomb.c urandomm.c xor.c
                     50:
                     51: EXTRA_DIST = mul_siui.c
                     52: nodist_libmpz_la_SOURCES = mul_si.c mul_ui.c
                     53: CLEANFILES = $(nodist_libmpz_la_SOURCES)
                     54:
                     55: mul_si.c: $(srcdir)/mul_siui.c
                     56:        cp $(srcdir)/mul_siui.c mul_si.c
                     57: mul_ui.c: $(srcdir)/mul_siui.c
                     58:        cp $(srcdir)/mul_siui.c mul_ui.c

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