mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
583baa9759
git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@575 f6dd340e-d3f9-0310-b409-bdd246841980
23 lines
309 B
Text
23 lines
309 B
Text
string remove1;
|
|
string remove2;
|
|
|
|
void setRemovals()
|
|
{
|
|
remove1 = "tmp sourceforge/index.html sourceforge/cppannotations";
|
|
remove2 = "o indexentry/o aux/o";
|
|
}
|
|
|
|
void clean()
|
|
{
|
|
setRemovals();
|
|
|
|
run("rm -rf " + remove1);
|
|
|
|
chdir("src/htmlindex");
|
|
run("rm -rf " + remove2);
|
|
exit(0);
|
|
}
|
|
|
|
|
|
|
|
|