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

« back to all changes in this revision

Viewing changes to build

  • 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:
16
16
#include "icmake/docs"
17
17
#include "icmake/pre"
18
18
#include "icmake/install"
19
 
#include "icmake/svnclean"
 
19
#include "icmake/distclean"
20
20
#include "icmake/zips"
21
21
#include "icmake/examples"
22
22
 
32
32
    setLocations();     // from INSTALL.im
33
33
 
34
34
    if (option == "clean")
35
 
        clean();
 
35
        clean(1);
36
36
 
37
37
    if (option == "examples")
38
38
        examples();
44
44
        exit(0);
45
45
    }
46
46
 
47
 
    if (option == "svnclean")
48
 
        svnclean();
 
47
    if (option == "distclean")
 
48
        distclean();
49
49
 
50
50
    if (option == "pre")
51
51
        pre();
75
75
                                                                "locations\n"
76
76
        "                     defined in the INSTALL.im file, optionally\n"
77
77
        "                     below <base>\n"
 
78
        "   distclean       - clean remnants of locally run ./bin/ scripts\n"
78
79
        "   docs            - construct the C++ Annotations\n"
79
80
        "   examples        - compile all examples\n"
80
81
        "   install <base>  - to install the C++ Annotations in the "
84
85
        "   man             - build the manual page (requires Yodl)\n"
85
86
        "   pre             - prepare files for independent `docs' call\n"
86
87
        "   programs        - build support programs\n"
87
 
        "   svnclean        - clean remnants of locally run ./bin/ scripts\n"
88
88
        "   zips            - zip archives (after doc)\n"
89
89
        "\n"
90
90
    );