#/usr/bin/csh
# make_clean
#
# Removes files in the lib directory and all temporary files/directories.

rm -f lib/*

rm -f Makefile*

rm -rf doc/qxrunner
rm -rf doc/qxcppunit

rm *~

foreach theDir (src/qxrunner examples/qxrunnerdemo src/qxcppunit examples/qxcppunitdemo)
	rm -f $theDir/*~
	rm -f $theDir/Makefile*
	rm -rf $theDir/.debug
	rm -rf $theDir/.debug_shared
	rm -rf $theDir/.release
	rm -rf $theDir/.release_shared
	rm -rf $theDir/.generatedfiles
end # foreach
