61 lines
1.2 KiB
Plaintext
61 lines
1.2 KiB
Plaintext
Description:
|
|
GNU Multiple Precision Arithmetic library (mpn_*, mpz_* part),
|
|
or its mini-gmp substitute
|
|
|
|
Files:
|
|
lib/mini-gmp-gnulib.c
|
|
lib/mini-gmp.c
|
|
lib/mini-gmp.h
|
|
m4/libgmp.m4
|
|
|
|
Depends-on:
|
|
|
|
configure.ac:
|
|
gl_LIBGMP
|
|
gl_CONDITIONAL_HEADER([gmp.h])
|
|
AC_PROG_MKDIR_P
|
|
gl_CONDITIONAL([GL_COND_OBJ_MINI_GMP_GNULIB], [test $HAVE_LIBGMP != yes])
|
|
|
|
Makefile.am:
|
|
BUILT_SOURCES += $(GMP_H)
|
|
|
|
if GL_GENERATE_GMP_H
|
|
if GL_GENERATE_MINI_GMP_H
|
|
# Build gmp.h as a wrapper for mini-gmp.h when using mini-gmp.
|
|
gmp.h: $(top_builddir)/config.status
|
|
@NMD@ $(MKDIR_P) '%reldir%'
|
|
echo '#include "mini-gmp.h"' > $@-t
|
|
echo '#if GNULIB_LIBGMP_MPQ' >> $@-t
|
|
echo '# include "mini-mpq.h"' >> $@-t
|
|
echo '#endif' >> $@-t
|
|
mv $@-t $@
|
|
endif
|
|
if GL_GENERATE_GMP_GMP_H
|
|
# Build gmp.h as a wrapper for gmp/gmp.h.
|
|
gmp.h: $(top_builddir)/config.status
|
|
@NMD@ $(MKDIR_P) '%reldir%'
|
|
echo '#include <gmp/gmp.h>' > $@-t
|
|
mv $@-t $@
|
|
endif
|
|
else
|
|
gmp.h: $(top_builddir)/config.status
|
|
rm -f $@
|
|
endif
|
|
MOSTLYCLEANFILES += gmp.h gmp.h-t
|
|
|
|
if GL_COND_OBJ_MINI_GMP_GNULIB
|
|
lib_SOURCES += mini-gmp-gnulib.c
|
|
endif
|
|
|
|
Include:
|
|
<gmp.h>
|
|
|
|
Link:
|
|
$(LTLIBGMP) when linking with libtool, $(LIBGMP) otherwise
|
|
|
|
License:
|
|
LGPLv3+ or GPLv2+
|
|
|
|
Maintainer:
|
|
all
|