#! /bin/sh
# The SPIMS software is covered by a license. The use of the software
# represents acceptance of the terms and conditions in the license.
# ******************************************************************
# Copyright (c) 1989, Swedish Institute of Computer Science
if [ $# != "0" ] && [ -d $1 ]; then (cd $1; shift; ./make $*);
else
/bin/make -f config/CONFIG -f Makefile $*
fi
