blob: 24d699c5913e80c3d9055f225de340f9d0430ad5 (
plain)
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
|
/** -*- C++ -*-
** \file version.cc
** \brief Common definitions.
*/
#include <config.h>
#include <authors.h>
/*-------------------.
| Program identity. |
`-------------------*/
/** Name of this program.
Be sure to have something usable even before main is started,
in case some ctor of a static object need to issue an error
message. */
const char *program_name = PACKAGE_NAME;
// Version string of this program.
const char *program_version =
"tc (" PACKAGE_STRING ")\n"
"@ID@\n"
"\n"
PACKAGE_SHORT_AUTHORS;
// Bug report address of this program.
const char *program_bug_address = PACKAGE_BUGREPORT;
/// Describe program and accepted arguments.
const char *program_doc =
"Tiger Compiler, Copyright (C) 2004-2021 LRDE.";
const char *program_args_doc = "INPUT-FILE";
|