mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-18 20:38:39 +01:00
974e12c1f0
Old version was 3.1.2 and is quite old: 2013-03-13 A lot has happened since then 4.0.1 is from 2018-02-07
63 lines
2.3 KiB
Makefile
63 lines
2.3 KiB
Makefile
# Copyright 2000-2018 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.
|
|
|
|
|
|
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/divworst.c examples/rndo-add.c examples/sample.c \
|
|
examples/version.c examples/can_round.c
|
|
|
|
EXTRA_DIST = PATCHES VERSION doc/README.dev doc/check-typography \
|
|
tools/ck-clz_tab tools/ck-copyright-notice tools/ck-news \
|
|
tools/ck-version-info tools/get_patches.sh \
|
|
$(DATAFILES)
|
|
|
|
bench:
|
|
cd tools/bench && $(MAKE) $(AM_MAKEFLAGS) bench
|
|
|
|
# Various checks for "make dist".
|
|
# * 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.
|
|
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
|
|
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
|
|
|
|
.PHONY: check-gmp-symbols check-exported-symbols
|