#!/bin/sh

make=$(which gmake 2>/dev/null)
test x$make = x && {
    make=$(which make 2>/dev/null)
}

test x$make = x && {
    echo "Error: 'make' not found!"
    exit 1
}

cat <<EOF
This tree requires no configuration nor compilation.
To see the install instructions run $make,
or simply run '$make install' to install to the
default location, under /usr/include/...
EOF
