#!/bin/sh
# @(#)psmake:MAKE-all	1.2 2026/01/21 03:56:21 (c) 1998-2008 J. Schilling & The Schilytools Team, Portions (c) 2026 CoralCMD Inc.

#
# Check if there already is a working 'smake' in the current directory
#
echo "Checking for working bootstrap make..."
./smake -version
if [ $? = 0 ]; then
	exit
fi
echo "Creating bootstrap make..."

sh ./.clean

#
# Now start the actual make precedure...
#
sh ./MAKE-sh
