Annotation of OpenXM_contrib/gmp/mpbsd/Makefile.am, Revision 1.1
1.1 ! maekawa 1: ## Process this file with automake to generate Makefile.in
! 2:
! 3: # Copyright (C) 1996, 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:
! 28: INCLUDES = -DBERKELEY_MP -D__gmpz_realloc=_mp_realloc -I$(top_srcdir)
! 29:
! 30: nodist_libmpbsd_la_SOURCES = \
! 31: add.c cmp.c gcd.c mul.c pow_ui.c powm.c realloc.c sqrtrem.c sub.c \
! 32: tdiv_qr.c
! 33: libmpbsd_la_SOURCES = \
! 34: itom.c mfree.c min.c mout.c move.c mtox.c sdiv.c xtom.c
! 35:
! 36: if WANT_MPBSD
! 37: noinst_LTLIBRARIES = libmpbsd.la
! 38: endif
! 39:
! 40: CLEANFILES = $(nodist_libmpbsd_la_SOURCES)
! 41:
! 42:
! 43: add.c: $(top_srcdir)/mpz/add.c
! 44: cp $(top_srcdir)/mpz/add.c add.c
! 45:
! 46: cmp.c: $(top_srcdir)/mpz/cmp.c
! 47: cp $(top_srcdir)/mpz/cmp.c cmp.c
! 48:
! 49: gcd.c: $(top_srcdir)/mpz/gcd.c
! 50: cp $(top_srcdir)/mpz/gcd.c gcd.c
! 51:
! 52: mul.c: $(top_srcdir)/mpz/mul.c
! 53: cp $(top_srcdir)/mpz/mul.c mul.c
! 54:
! 55: pow_ui.c: $(top_srcdir)/mpz/pow_ui.c
! 56: cp $(top_srcdir)/mpz/pow_ui.c pow_ui.c
! 57:
! 58: powm.c: $(top_srcdir)/mpz/powm.c
! 59: cp $(top_srcdir)/mpz/powm.c powm.c
! 60:
! 61: realloc.c: $(top_srcdir)/mpz/realloc.c
! 62: cp $(top_srcdir)/mpz/realloc.c realloc.c
! 63:
! 64: sqrtrem.c: $(top_srcdir)/mpz/sqrtrem.c
! 65: cp $(top_srcdir)/mpz/sqrtrem.c sqrtrem.c
! 66:
! 67: sub.c: $(top_srcdir)/mpz/sub.c
! 68: cp $(top_srcdir)/mpz/sub.c sub.c
! 69:
! 70: tdiv_qr.c: $(top_srcdir)/mpz/tdiv_qr.c
! 71: cp $(top_srcdir)/mpz/tdiv_qr.c tdiv_qr.c
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>