#!/bin/sh
cd "${0%/*}" || exit 1                  # Run from this directory

if [ -z "$WM_DIR" ]                     # Require WM_DIR
then
    WM_DIR="$(\cd $(dirname $0)/.. && \pwd -L)"
    export WM_DIR
fi

make                                    # Compile tools for wmake

#------------------------------------------------------------------------------
