mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
858daff48b
git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@166 f6dd340e-d3f9-0310-b409-bdd246841980
14 lines
368 B
Text
14 lines
368 B
Text
void svnclean()
|
|
{
|
|
run("rm -f script.log {yo,html,latex}/legal.shtml html/cplusplus*.html");
|
|
run("rm -f html/target.shtml html/contents.html html/index.html");
|
|
run("rm -f html/cppindex.html html/cplusplus.index zip/cplusplus.*.zip");
|
|
run("rm -f latex/*.{log,toc,aux,out,ind,ilg,idx,dvi,latex}");
|
|
run("rm -rf src/*/*/o src/*/o");
|
|
|
|
exit(0);
|
|
}
|
|
|
|
|
|
|
|
|