https://gitorious.org/ocamlp3l/ocamlp3l_cvs.git
Raw File
Tip revision: 2db189928c94d62a3b4757b3eec68f0a4d4113f0 authored by dicosmo on 23 June 1998, 11:28:44 UTC
*** empty log message ***
Tip revision: 2db1899
clean.tcsh
#!/bin/tcsh
#
# clean up files left by ocamlp3l
#

echo Removing editor files ...
rm -f *~
echo Removing temp source files
rm -f *.par.ml *.seq.ml *.gra.ml
echo Removing object code ...
rm -f *.cm?
echo Removing executable files ...
rm -f *.par *.seq *.gra
echo Removing log files ...
rm -f *.log
echo "Done!"

back to top