https://github.com/cran/Matrix
Raw File
Tip revision: 9077804e0f3e1086758df2aa951d71b95e3ae771 authored by Doug and Martin on 30 August 2008, 00:00:00 UTC
version 0.999375-13
Tip revision: 9077804
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