#!/bin/sh if [ -d src -a -d sim ] ; then # we are in the right place make -C src realclean rm -f src/config.sh make -C sim/lang clean rm -f sim/FUNC_TABLE sim/simulate sim/kernel/makefile find . \( -name \*.o -o -name \*.bak -o -name \*.a -o -name \*.orig \) -exec rm -f {} \; else echo "cd to the top of the REAL distribution please." exit 1 fi