Go back to using gmake.

git-svn-id: svn://10.0.0.236/trunk@76836 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
nelsonb%netscape.com 2000-08-22 01:15:41 +00:00
parent 1c53b7c30e
commit 38f7c36f0b
3 changed files with 11 additions and 9 deletions

View File

@ -33,6 +33,7 @@
## may use your version of this file under either the MPL or the GPL.
ECHO=/bin/echo
MAKE=gmake
$ECHO "\n** Running unit tests for MPI library\n"
@ -40,7 +41,7 @@ $ECHO "\n** Running unit tests for MPI library\n"
# the MPI library...
$ECHO "Bringing mpi-test up to date ... "
if make mpi-test ; then
if $MAKE mpi-test ; then
:
else
$ECHO " "
@ -84,7 +85,7 @@ fi
$ECHO "\n** Running other tests\n"
$ECHO "Bringing 'pi' up to date ... "
if make pi ; then
if $MAKE pi ; then
:
else
$ECHO "\nMake failed to build pi.\n"

View File

@ -37,16 +37,16 @@
## the GPL. If you do not delete the provisions above, a recipient
## may use your version of this file under either the MPL or the GPL.
##
# $Id: multest,v 1.1 2000-07-14 00:44:25 nelsonb%netscape.com Exp $
# $Id: multest,v 1.2 2000-08-22 01:15:41 nelsonb%netscape.com Exp $
#
ECHO=/bin/echo
MAKE=gmake
$ECHO "\n** Running multiply and square timing tests\n"
$ECHO "Bringing 'mulsqr' up to date ... "
if make mulsqr ; then
if $MAKE mulsqr ; then
:
else
$ECHO "\nMake failed to build mulsqr.\n"
@ -79,7 +79,7 @@ rm -f tt$$.tmp
$ECHO "\n** Running Karatsuba-Ofman multiplication tests\n"
$ECHO "Brining 'karatsuba' up to date ... "
if make karatsuba ; then
if $MAKE karatsuba ; then
:
else
$ECHO "\nMake failed to build karatsuba.\n"

View File

@ -40,11 +40,12 @@
## the GPL. If you do not delete the provisions above, a recipient
## may use your version of this file under either the MPL or the GPL.
##
# $Id: timetest,v 1.3 2000-08-09 20:44:05 nelsonb%netscape.com Exp $
# $Id: timetest,v 1.4 2000-08-22 01:15:41 nelsonb%netscape.com Exp $
#
# Avoid using built-in shell echoes
ECHO=/bin/echo
MAKE=gmake
# Use a fixed seed so timings will be more consistent
# This one is the 11th-18th decimal digits of 'e'
@ -56,7 +57,7 @@ SEED=45904523; export SEED
$ECHO "\n** Running timing tests for MPI library\n"
$ECHO "Bringing 'metime' up to date ... "
if make metime ; then
if $MAKE metime ; then
:
else
$ECHO "\nMake failed to build metime.\n"
@ -71,7 +72,7 @@ fi
#------------------------------------------------------------------------
$ECHO "Bringing 'primegen' up to date ... "
if make primegen ; then
if $MAKE primegen ; then
:
else
$ECHO "\nMake failed to build primegen.\n"