    // Inspect the following #defines. Change them to taste. If you don't
    // need a particular option, change its value into an empty string

    // should commands be echoed (ON) or not (OFF) ?
#define USE_ECHO              ON


    // The final program and source containing main():
    // ===============================================

    // define the name of the program to create:
#define BINARY              "../../poly"

    // define the name of the source containing main():
#define MAIN                "main.cc"

    // #defines used for compilation and linking:
    // ==========================================

    // define the compiler to use:
#define COMPILER            "g++"

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

    // define the pattern to locate sources in a directory:
#define SOURCES             "*.cc"

    // define the options used for linking:
#define LINKER_OPTIONS      "-s"

    // define any additional libraries BINARY may need:
#define ADD_LIBRARIES       "bobcat"

    // define any additional paths (other than the standard paths) the
    // additional libraries are located in:
#define ADD_LIBRARY_PATHS  ""

    // #defines used for the final product:
    // ====================================

#define BIN_INSTALL         "/usr/local/bin"



    // Some advanced #defines, used to create parsers and lexical scanners 
    // ===================================================================


    // Lexical Scanner section
    // =======================

    // Should a lexical scanner be constructed? If so, define the subdirectory 
    // containing the scanner's specification file. 
#define SCANNER_DIR         "scanner"  

    // What is the program generating the lexical scanner?
#define SCANGEN             "flex"

    // Flags to provide SCANGEN with:
#define SCANFLAGS           "-I"

    // Name of the lexical scanner specification file
#define SCANSPEC            "lexer"

    // Name of the file generated by the lexical scanner
#define SCANOUT             "yylex.cc"


    // Parser section
    // ==============

    // Should a parser be constructed? If so, define the subdirectory
    // containing the parser's specification file
#define PARSER_DIR          "parser"

    // If a parser must be constructed, should the script (provided in the
    // skeleton file parser/gramspec/grambuild) `parser/gramspec/grambuild'
    // **NOT** be called? If it must NOT be called, comment out the following 
    // #define directive:
// #define GRAMBUILD

    // What it the program generating a parser?
#define PARSGEN             "bisonc++"

    // What it the grammar specificication file?
#define PARSSPEC            "grammar"

    // Flags to provide PARSGEN with:
#define PARSFLAGS           "-V -l"

    // Name of the file generated by the parser generator containing the 
    // parser function
#define PARSOUT             "parse.cc"



    // Additional defines, which should normally not be modified
    // =========================================================

    // Directory below this directory to contain temporary results
#define TMP_DIR             "tmp"

    // Local program library to use (change to an empty string if you want to
    // use the object modules themselves, rather than a library)
#define LIBRARY             "modules"

    //  The extension of object modules:
#define OBJ_EXT             ".o"

    // below #define DEFCOM "program" or "library" may be added by icmstart
#define DEFCOM "program"
