/* this is a dummy comment */
#include "make.h"
BPTR stdin, stderr, stdout;
TREENODE  *Root         = NULL; /* Root of file-name tree        */
TREENODE  *Macros       = NULL; /* Root of macro substitutions   */
BPTR   OutputFile       = NULL;
int    Inputline        = 1;    /* current input line number     */
char   *cmdbuff         = NULL;
char   AlwaysRebuild    = 0;    /* -a */
#ifdef DEBUG
char   DebugMode        = 0;    /* -d */
#endif
char   PrintMakeFile    = 0;    /* -p */
char   CreateBatch      = 0;    /* -c */
char   IgnoreErrors     = 0;    /* -i */
char   ContinueBranches = 0;    /* -k */
char   NoExecuteMode    = 0;    /* -c -n */
char   DontPrintErrors  = 0;    /* -q */
char   SilentMode       = 0;    /* -s */
char   RespectCase      = 0;    /* -o */
char   QuestionMode     = 0;    /* -q */
