Annotation of OpenXM_contrib/gmp/mpn/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 1996, 1998, 1999, 2000, 2001, 2002 Free Software Foundation,
! 4: # Inc.
1.1 maekawa 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:
1.1.1.2 ! ohara 24: AUTOMAKE_OPTIONS = gnu no-dependencies $(top_builddir)/ansi2knr
1.1 maekawa 25:
1.1.1.2 ! ohara 26: INCLUDES = -D__GMP_WITHIN_GMP -I$(top_srcdir) \
! 27: -DOPERATION_`echo $* | sed 's/_$$//'`
1.1 maekawa 28:
29: OFILES = @mpn_objects@
30:
1.1.1.2 ! ohara 31:
! 32: # All possible mpn normal and optional function files are listed here as C
! 33: # sources for a dummy library, to get automake to generate ansi2knr rules
! 34: # for each. Such rules will be ignored for any that are instead implemented
! 35: # with a .asm (or whatever) for a particular target.
! 36: #
! 37: EXTRA_LTLIBRARIES = libdummy.la
! 38: nodist_libdummy_la_SOURCES = \
! 39: add.c add_1.c add_n.c addmul_1.c and_n.c andn_n.c bdivmod.c \
! 40: cmp.c com_n.c copyd.c copyi.c \
! 41: dc_divrem_n.c dive_1.c diveby3.c divis.c divrem.c divrem_1.c divrem_2.c \
! 42: dump.c fib2_ui.c gcd.c \
! 43: gcd_finda.c gcd_1.c gcdext.c get_str.c hamdist.c invert_limb.c \
! 44: ior_n.c iorn_n.c jacbase.c lshift.c mod_1.c mod_34lsub1.c mode1o.c \
! 45: mul.c mul_1.c mul_2.c mul_fft.c mul_n.c mul_basecase.c \
! 46: nand_n.c nior_n.c perfsqr.c popcount.c \
! 47: pre_divrem_1.c pre_mod_1.c pow_1.c random.c random2.c rshift.c \
! 48: rootrem.c sb_divrem_mn.c scan0.c scan1.c set_str.c \
! 49: sqr_basecase.c sqr_diagonal.c \
! 50: sqrtrem.c sub.c sub_1.c sub_n.c submul_1.c \
! 51: tdiv_qr.c udiv_qrnnd.c udiv_w_sdiv.c xor_n.c xnor_n.c
! 52:
! 53:
1.1 maekawa 54: noinst_LTLIBRARIES = libmpn.la
1.1.1.2 ! ohara 55: libmpn_la_SOURCES = mp_bases.c
1.1 maekawa 56: libmpn_la_LIBADD = $(OFILES)
57: libmpn_la_DEPENDENCIES = $(OFILES)
58:
1.1.1.2 ! ohara 59: TARG_DIST = a29k alpha arm clipper cray generic i960 ia64 lisp m68k m88k \
! 60: mips32 mips64 ns32k pa32 pa64 power powerpc32 powerpc64 pyr s390 sh \
! 61: sparc32 sparc64 thumb vax x86 z8000 z8000x
! 62:
! 63: EXTRA_DIST = Makeasm.am asm-defs.m4 cpp-ccas m4-ccas $(TARG_DIST)
! 64:
! 65:
! 66: include Makeasm.am
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>