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 37 38 39 40 41
|
// Specify the name of the project:
#define PROJECT "stealth"
// 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++11 -Wall -O2 -pthread -g"
// the compiler options to use.
#define LDFLAGS "-lpthread"
// 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 MANUAL "/usr/share/doc/"${PROJECT}"-doc/manual"
// the directory whre the manual page is stored
#define STD "/usr/share/doc/"${PROJECT}
// the directory where the standard documentation is stored
#define EXTRA "/usr/share/doc/"${PROJECT}"-doc"
// the directory where the extra documentation is stored
|