beta-0.89.2
[luatex.git] / source / libs / gmp / gmp-src / mpn / Makefile.am
blobfc54483ee5fe0b9d8ab18a9e2f9441f041d65741
1 ## Process this file with automake to generate Makefile.in
3 # Copyright 1996, 1998-2002, 2005, 2011, 2013 Free Software Foundation, Inc.
5 #  This file is part of the GNU MP Library.
7 #  The GNU MP Library is free software; you can redistribute it and/or modify
8 #  it under the terms of either:
10 #    * the GNU Lesser General Public License as published by the Free
11 #      Software Foundation; either version 3 of the License, or (at your
12 #      option) any later version.
14 #  or
16 #    * the GNU General Public License as published by the Free Software
17 #      Foundation; either version 2 of the License, or (at your option) any
18 #      later version.
20 #  or both in parallel, as here.
22 #  The GNU MP Library is distributed in the hope that it will be useful, but
23 #  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
24 #  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
25 #  for more details.
27 #  You should have received copies of the GNU General Public License and the
28 #  GNU Lesser General Public License along with the GNU MP Library.  If not,
29 #  see https://www.gnu.org/licenses/.
32 AM_CPPFLAGS = -D__GMP_WITHIN_GMP -I$(top_srcdir) \
33   -DOPERATION_`echo $* | sed 's/_$$//'`
35 OFILES = @mpn_objects@
37 noinst_LTLIBRARIES = libmpn.la
38 nodist_libmpn_la_SOURCES = fib_table.c mp_bases.c
39 libmpn_la_LIBADD = $(OFILES)
40 libmpn_la_DEPENDENCIES = $(OFILES)
42 TARG_DIST = alpha arm arm64 cray generic ia64 lisp m68k m88k \
43   minithres mips32 mips64 pa32 pa64 power powerpc32 powerpc64 \
44   s390_32 s390_64 sh sparc32 sparc64 thumb vax x86 x86_64
46 EXTRA_DIST = asm-defs.m4 cpp-ccas m4-ccas $(TARG_DIST)
49 # These are BUILT_SOURCES at the top-level, so normally they're built before
50 # recursing into this directory.
52 fib_table.c:
53         cd ..; $(MAKE) $(AM_MAKEFLAGS) mpn/fib_table.c
54 mp_bases.c:
55         cd ..; $(MAKE) $(AM_MAKEFLAGS) mpn/mp_bases.c
56 perfsqr.h:
57         cd ..; $(MAKE) $(AM_MAKEFLAGS) mpn/perfsqr.h
59 include Makeasm.am