summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2019-08-02 13:17:10 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2019-08-02 13:17:10 +0000
commit2c9ca6482a79c73510fe17e6030c422b7b51990d (patch)
tree7fa1fd39c17a81d2ea040fd7a7e94c7352438138 /tools
parentf034940f3afae7f065f524ff8fb57aefe68772d1 (diff)
downloadmpfr-2c9ca6482a79c73510fe17e6030c422b7b51990d.tar.gz
For Makefile.am and each one in SUBDIRS, added the .POSIX target to
select the POSIX behavior (since we do not require GNU "make"). See: https://sympa.inria.fr/sympa/arc/mpfr/2019-08/msg00005.html git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@13545 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tools')
-rw-r--r--tools/bench/Makefile.am8
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/bench/Makefile.am b/tools/bench/Makefile.am
index c1a849310..b9a92f4bb 100644
--- a/tools/bench/Makefile.am
+++ b/tools/bench/Makefile.am
@@ -8,6 +8,13 @@
# 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:
+
AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src
AM_DEFAULT_SOURCE_EXT = .c
@@ -21,4 +28,3 @@ noinst_HEADERS = benchtime.h
bench : mpfrbench
./mpfrbench
-