#!/bin/sh
# @(#).clean	1.2 08/08/13 Copyright 1998-2008 J. Schilling

echo 'Removing old objects...'
rm -f *.o *.obj

echo 'Removing old config cache files...'
rm -f config.status config.cache config.log xconfig.h rules.cnf

if [ $# -gt 0 ]; then
	echo 'Removing old smake binary...'
	rm -f smake smake.exe
fi

echo 'done.'
