25 lines
855 B
Makefile
25 lines
855 B
Makefile
# Copyright 2010-2020 Free Software Foundation, Inc.
|
|
# This Makefile.am is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
# PARTICULAR PURPOSE.
|
|
|
|
|
|
# Since we do not require GNU "make", let's select the POSIX behavior to
|
|
# uniformize the behavior a bit more with various "make" implementations
|
|
# and ease maintenance. This target should be removed only if one day,
|
|
# we need to require GNU "make".
|
|
.POSIX:
|
|
|
|
dist_doc_DATA = FAQ.html
|
|
|
|
info_TEXINFOS = mpfr.texi
|
|
|
|
mpfr_TEXINFOS = texinfo.tex fdl.texi
|
|
|
|
MAKEINFOFLAGS = --enable-encoding
|