mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
c96151f3bb
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
23 lines
259 B
Text
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);
|
|
}
|
|
|
|
|
|
|
|
|