: run this script through /bin/sh
M=/bin/make
if [ -f /usr/bin/make ]; then
    M=/usr/bin/make
elif [ -f /usr/ccs/bin/make ]; then
    M=/usr/ccs/bin/make
fi

MODULE="compat"; export MODULE
TOPDIR="../"; export TOPDIR
m="$M -f ../config/CONFIG.make -f Makefile"
eval $m ${1+"$@"}
