diff options
author | Kevin Ryde <user42@zip.com.au> | 2001-12-01 00:00:57 +0100 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2001-12-01 00:00:57 +0100 |
commit | 4ffaee325dec13528c6d07704aa60605406fcdc5 (patch) | |
tree | c9656c8e12f4dea2d1686dcf263f7253df904dc4 /Makefile.in | |
parent | 94ff9b13b3feec589b7dc7ee1e0433edc6242667 (diff) | |
download | gmp-4ffaee325dec13528c6d07704aa60605406fcdc5.tar.gz |
Regenerate for:
* Makefile.am, configure.in: Temporarily remove mpfr, just leave a
README.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/Makefile.in b/Makefile.in index 56a72b689..db7ce340d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -168,12 +168,20 @@ LIBMP_LT_AGE = 1 AUTOMAKE_OPTIONS = gnu no-dependencies ansi2knr -# FIXME: This is a workaround for automake not allowing info_TEXINFOS to be -# conditionalized. We want mpfr/mpfr.info only installed under -# --enable-mpfr, but it and the rest of mpfr always included in a "make -# dist". -@MAINTAINER_MODE_TRUE@@WANT_MPFR_FALSE@MPFR_DIR = mpfr -@WANT_MPFR_TRUE@MPFR_DIR = mpfr +# mpfr temporarily removed from the distribution +MPFR_DIR = +# +# # FIXME: This is a workaround for automake not allowing info_TEXINFOS to be +# # conditionalized. We want mpfr/mpfr.info only installed under +# # --enable-mpfr, but it and the rest of mpfr always included in a "make +# # dist". +# if WANT_MPFR +# MPFR_DIR = mpfr +# else +# if MAINTAINER_MODE +# MPFR_DIR = mpfr +# endif +# endif # "tests" ahead of "mpfr" ensures tests/t-constants is run before the # mpfr/tests programs. @@ -188,7 +196,7 @@ lib_LTLIBRARIES = libgmp.la $(GMPXX_LTLIBRARIES_OPTION) $(MPBSD_LTLIBRARIES_OPTI EXTRA_DIST = doc macos \ configfsf.guess configfsf.sub .gdbinit INSTALL.autoconf libmp.sym \ - gmpxx.h mpfrxx.h + gmpxx.h mpfrxx.h mpfr/README DISTCLEANFILES = $(nodist_include_HEADERS) config.m4 @gmp_srclinks@ @@ -449,8 +457,7 @@ DIST_COMMON = README $(gmp_TEXINFOS) $(include_HEADERS) ./stamp-h1.in \ ansi2knr.c config.guess config.in config.sub configure \ configure.in gmp-h.in install-sh ltmain.sh mdate-sh missing \ mkinstalldirs mp-h.in stamp-vti texinfo.tex version.texi -DIST_SUBDIRS = tests mpn mpz mpq mpf printf scanf cxx mpbsd mpfr demos \ - tune +DIST_SUBDIRS = $(SUBDIRS) SOURCES = $(libdummy_la_SOURCES) $(libgmp_la_SOURCES) $(libgmpxx_la_SOURCES) $(libmp_la_SOURCES) all: config.h @@ -870,7 +877,7 @@ GZIP_ENV = --best distdir: $(DISTFILES) -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir) mkdir $(distdir) - $(mkinstalldirs) $(distdir)/. $(distdir)/demos/expr + $(mkinstalldirs) $(distdir)/. $(distdir)/demos/expr $(distdir)/mpfr @for file in $(DISTFILES); do \ if test -f $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ @@ -886,7 +893,7 @@ distdir: $(DISTFILES) || exit 1; \ fi; \ done - for subdir in $(DIST_SUBDIRS); do \ + for subdir in $(SUBDIRS); do \ if test "$$subdir" = .; then :; else \ test -d $(distdir)/$$subdir \ || mkdir $(distdir)/$$subdir \ |