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
|
#define PROGRAM "natlog"
// 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
#define BINARY "/usr/bin/"${PROGRAM}
// 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/"${PROGRAM}
// the directory where the standard documentation is stored
|