https://github.com/cran/Matrix
Raw File
Tip revision: 1886b6b5ced3d9ae927f603a657938a6f73cf0ff authored by Doug and Martin on 24 July 2008, 00:00:00 UTC
version 0.999375-11
Tip revision: 1886b6b
configure
#!/bin/sh
#
MAKE=${MAKE:-make}
#
if $MAKE -v | sed -n 1p | grep '^GNU' > /dev/null
then echo 'Using  GNU make  for building the package'
else echo '*** You need "GNU make" for building this package from the sources'
    exit 1
fi
back to top