1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
void distclean()
{
list extensions;
int idx;
clean(0);
run("rm -f script.log yo/legal.shtml latex/legal.shtml html/legal.shtml");
run("rm -f 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");
extensions = strtok("aux dvi idx ilg ind latex log out pdf ps toc", " ");
for(idx = listlen(extensions); idx--; )
run("rm -f latex/cplusplus*." + extensions[idx]);
run("rm -rf src/*/*/o src/*/o");
run("rm -rf zip/cplusplus.txt");
exit(0);
}
|