cppannotations/icmake/clean
fbbrokken c96151f3bb The ./build script now offers the ./build install and ./build cinstall
modes. The former installs uncompressed documents, the latter compressed.

The ./build clean mode no longer removes Debian-specific left-overs; this is
left to Debian's `rules' file.

Man-page and INSTALL info were modified accordingly



git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@6 f6dd340e-d3f9-0310-b409-bdd246841980
2006-09-04 19:15:07 +00:00

23 lines
259 B
Text

string remove1;
string remove2;
void setRemovals()
{
remove1 = "tmp";
remove2 = "o indexentry/o aux/o";
}
void clean()
{
setRemovals();
run("rm -rf " + remove1);
chdir("src/htmlindex");
run("rm -rf " + remove2);
exit(0);
}