~ubuntu-branches/ubuntu/vivid/guncat/vivid-proposed

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
28
29
30
31
32
33
34
35
36
    // Specify the name of the project:
#define PROJECT             "guncat"

    // When defined, these overrule COMPILER and COMPILER_OPTIONS
    // COMPILER and COMPILER_OPTIONS are now obsolete
    // Instead of CXX and CXXFLAGS, CC and CFLAGS can be used.
    // Their #define values are overruled by identically named environment
    // variables. 

#define CXX                 "g++"
    // the compiler to use. 

#define CXXFLAGS            "--std=c++0x -Wall -O2 -g"
    // the compiler options to use.

#define LDFLAGS             ""
    // flags passed to the linker

// =========================================================================
// The following locations are overruled by `build install' arguments

#define BINARY     "/usr/bin/"${PROJECT}
    // the full path of the final program

#define MAN     "/usr/share/man/man1"
    // the directory whre the manual page is stored

#define STD     "/usr/share/doc/"${PROJECT}
    // the directory where the standard documentation is stored