mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Simplify the mess that was option setting (2 redundant variables !?) Move options to a separate file Have "modules" own their options, and OPT only access them (less redundancy) Simplify code, respect naming conventions better
38 lines
738 B
C
38 lines
738 B
C
/*
|
|
* This file is part of RGBDS.
|
|
*
|
|
* Copyright (c) 1997-2021, Carsten Sorensen and RGBDS contributors.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef RGBDS_MAIN_H
|
|
#define RGBDS_MAIN_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
#include "helpers.h"
|
|
|
|
extern bool haltnop;
|
|
extern bool optimizeloads;
|
|
extern bool verbose;
|
|
extern bool warnings; /* True to enable warnings, false to disable them. */
|
|
|
|
extern FILE *dependfile;
|
|
extern char *tzTargetFileName;
|
|
extern bool oGeneratedMissingIncludes;
|
|
extern bool oFailedOnMissingInclude;
|
|
extern bool oGeneratePhonyDeps;
|
|
|
|
/* TODO: are these really needed? */
|
|
#define YY_FATAL_ERROR fatalerror
|
|
|
|
#ifdef YYLMAX
|
|
#undef YYLMAX
|
|
#endif
|
|
#define YYLMAX 65536
|
|
|
|
#endif /* RGBDS_MAIN_H */
|