facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
99 lines
4.0 KiB
Makefile
99 lines
4.0 KiB
Makefile
# Copyright 2000-2025 Free Software Foundation, Inc.
|
|
# Contributed by the Pascaline and Caramba projects, INRIA.
|
|
|
|
# This file is part of the GNU MPFR Library.
|
|
|
|
# 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.
|
|
|
|
|
|
# Warning! Do not add rules for DISTFILES files (such as ChangeLog),
|
|
# because GNU Automake will create a "distdir-am: $(DISTFILES)" rule,
|
|
# which could regenerate such files, and this is not allowed as this
|
|
# changes files from the source directory; for this reason, this
|
|
# makes "make distcheck" fail. To update the ChangeLog file, use
|
|
# "make update-changelog" or run the tools/update-changelog script
|
|
# directly.
|
|
|
|
|
|
# The ".POSIX" line is needed in particular for GNU "make", so that
|
|
# recipes are invoked as if the shell had been passed the -e flag.
|
|
# But note that since GNU Automake adds non-comment lines before it
|
|
# in its generated Makefile, this does not ensure POSIX behavior with
|
|
# other "make" implementations.
|
|
.POSIX:
|
|
|
|
AUTOMAKE_OPTIONS = gnu
|
|
|
|
# ACLOCAL_AMFLAGS will be fully deprecated in Automake 2.0;
|
|
# AC_CONFIG_MACRO_DIRS (introduced in Automake 1.13) is now used instead,
|
|
# but we still set ACLOCAL_AMFLAGS to avoid a warning message from
|
|
# libtoolize and in case some developer needs to switch back to an
|
|
# old Automake version.
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = doc src tests tune tools/bench
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = mpfr.pc
|
|
|
|
nobase_dist_doc_DATA = AUTHORS BUGS COPYING COPYING.LESSER NEWS TODO \
|
|
examples/ReadMe examples/can_round.c examples/divworst.c \
|
|
examples/rndo-add.c examples/sample.c examples/threads.c \
|
|
examples/version.c
|
|
|
|
# Note: The version-ext.sh script is normally no longer needed because
|
|
# the output_info code in tests/Makefile.am now executes this script
|
|
# only if $(top_srcdir)/.git exists and is readable, but this should
|
|
# not occur in a tarball (built based on EXTRA_DIST), unless someone
|
|
# has modified it for some reason. But since this script is small, we
|
|
# distribute it just in case it would be used.
|
|
EXTRA_DIST = PATCHES VERSION doc/README.dev doc/check-typography doc/mini-gmp \
|
|
tools/check_mparam.c tools/ck-clz_tab tools/ck-copyright-notice \
|
|
tools/ck-mparam tools/ck-news tools/ck-version-info tools/get_patches.sh \
|
|
version-ext.sh $(DATAFILES)
|
|
|
|
bench:
|
|
cd tools/bench && $(MAKE) $(AM_MAKEFLAGS) bench
|
|
|
|
# Various checks for "make dist" / "make distcheck".
|
|
# Warning! With "make distcheck", neither the top-level directory nor
|
|
# the tools directory is writable.
|
|
# * Check consistency concerning -version-info. Moreover if the VERSION
|
|
# file doesn't end with "-dev", check that the -version-info value is
|
|
# up-to-date. Note: this is a heuristic, to detect some mistakes.
|
|
# * Check that copyright notices exist and appear to be correct.
|
|
# * Check the NEWS file.
|
|
# * Check the __clz_tab sizes.
|
|
# * Check the mparam.h files.
|
|
# * Check typography in mpfr.texi (Texinfo rules).
|
|
dist-hook:
|
|
cd $(srcdir) && tools/ck-version-info
|
|
cd $(srcdir) && tools/ck-copyright-notice
|
|
cd $(srcdir) && tools/ck-news
|
|
cd $(srcdir) && tools/ck-clz_tab
|
|
$(srcdir)/tools/ck-mparam
|
|
cd $(srcdir)/doc && ./check-typography
|
|
|
|
# Check that MPFR does not use GMP internal symbols. Of course, do not run
|
|
# this rule if you use --with-gmp-build or --enable-gmp-internals.
|
|
# This test does nothing if no libmpfr.so is generated.
|
|
check-gmp-symbols:
|
|
cd src && $(MAKE) check-gmp-symbols
|
|
|
|
# Check that MPFR does not define symbols with a GMP reserved prefix.
|
|
# This test does nothing if no libmpfr.so is generated.
|
|
check-exported-symbols:
|
|
cd src && $(MAKE) check-exported-symbols
|
|
|
|
update-changelog:
|
|
cd $(srcdir) && tools/update-changelog
|
|
|
|
.PHONY: check-gmp-symbols check-exported-symbols update-changelog
|