blob: 2afa694695bddd729f1a2e9f9c46d983d5935a2c (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
#! /usr/bin/autogen
AutoGen definitions melt-build.tpl;
// melt-build.in is generated from melt-build.tpl using melt-build.def
// and the autogen utility by 'autogen melt-build.def'.
// This file is written by Basile Starynkevitch
//
// Copyright 2010 Free Software Foundation
//
// This file is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
// When adding or removing a core melt/*.melt file, please describe it
// here.
////////////////////////////////////////////////////////////////
// the MELT translator is described by several similar entries, one
// for each source file. Entry order is important!
// field 'base' gives the base name of the *.melt file
// field 'mkvarsuf' gives a suffix part of a generated make variable name
melt_translator_file = {
base = "warmelt-first";
mkvarsuf = FIRST;
};
melt_translator_file = {
base = "warmelt-base";
mkvarsuf = BASE;
};
melt_translator_file = {
base = "warmelt-debug";
mkvarsuf = DEBUG;
};
melt_translator_file = {
base = "warmelt-macro";
mkvarsuf = MACRO;
};
melt_translator_file = {
base = "warmelt-normal";
// warmelt-normal.melt contains (load "warmelt-predef.melt")
includeload = "warmelt-predef.melt";
mkvarsuf = NORMAL;
};
melt_translator_file = {
base = "warmelt-normatch";
mkvarsuf = NORMATCH;
};
melt_translator_file = {
base = "warmelt-genobj";
mkvarsuf = GENOBJ;
};
melt_translator_file = {
base = "warmelt-outobj";
mkvarsuf = OUTOBJ;
};
////////////////
// the additional MELT application files
melt_application_file = {
base = "xtramelt-parse-infix-syntax";
mkvarsuf = PARSE_INFIX_SYNTAX;
};
melt_application_file = {
base = "xtramelt-ana-base";
mkvarsuf = ANA_BASE;
};
melt_application_file = {
base = "xtramelt-ana-simple";
mkvarsuf = ANA_SIMPLE;
};
melt_application_file = {
base = "xtramelt-c-generator";
mkvarsuf = C_GENERATOR;
};
melt_application_file = {
base = "xtramelt-opengpu";
mkvarsuf = OPENGPU;
};
// the various MELT stages which should be melt-stage1 melt-stage2
// etc...
melt_stage = melt-stage1;
melt_stage = melt-stage2;
melt_stage = melt-stage3;
|