~ubuntu-branches/ubuntu/trusty/c++-annotations/trusty

« back to all changes in this revision

Viewing changes to icmake/distclean

  • Committer: Package Import Robot
  • Author(s): Frank B. Brokken
  • Date: 2012-06-28 20:51:43 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20120628205143-ykeb4gph8bxuuagl
Tags: 9.4.0-1
New upstream release adds new section about std::make_shared

Show diffs side-by-side

added added

removed removed

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