#! /usr/bin/autogen AutoGen definitions melt-build-script.tpl; // melt-build-script.mk is generated from melt-build-script.tpl using melt-build-script.def // and the autogen utility by 'autogen melt-build-script.def'. // This file is written by Basile Starynkevitch // // Copyright 2012 - 2013 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 // . // 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. It is bootstrapped. Entry order is important! // field 'base' gives the base name of the *.melt file // field 'varsuf' gives a suffix part of a generated shell variable name melt_translator_file = { base = "warmelt-first"; varsuf = FIRST; }; melt_translator_file = { base = "warmelt-base"; varsuf = BASE; }; melt_translator_file = { base = "warmelt-debug"; varsuf = DEBUG; }; melt_translator_file = { base = "warmelt-macro"; varsuf = MACRO; }; melt_translator_file = { base = "warmelt-normal"; // warmelt-normal.melt contains (load "warmelt-predef.melt") includeload = "warmelt-predef.melt"; varsuf = NORMAL; }; melt_translator_file = { base = "warmelt-normatch"; varsuf = NORMATCH; }; melt_translator_file = { base = "warmelt-genobj"; varsuf = GENOBJ; }; melt_translator_file = { base = "warmelt-outobj"; varsuf = OUTOBJ; }; melt_translator_file = { base = "warmelt-hooks"; varsuf = HOOKS; }; melt_translator_file = { base = "warmelt-modes"; varsuf = MODES; }; //////////////////////////////////////////////////////////////// // The additional MELT application files, which are not useful to // translate MELT code to C, so are not bootstrapped. melt_application_file = { base = "xtramelt-ana-base"; varsuf = ANA_BASE; }; melt_application_file = { base = "xtramelt-ana-tree"; varsuf = ANA_TREE; }; melt_application_file = { base = "xtramelt-ana-gimple"; varsuf = ANA_GIMPLE; }; melt_application_file = { base = "xtramelt-probe"; varsuf = PROBE; }; melt_application_file = { base = "xtramelt-ana-simple"; varsuf = ANA_SIMPLE; }; melt_application_file = { base = "xtramelt-c-generator"; varsuf = C_GENERATOR; }; melt_application_file = { base = "xtramelt-opengpu"; varsuf = OPENGPU; }; melt_application_file = { base = "xtramelt-playground"; varsuf = PLAYGROUND; }; // The various MELT stages: stagdir gives the directory name, stagsuf gives a // suffix for variable name, and stagprevdir gives the directory name for // the previous stage, and stagprevflavor gives its flavor. melt_build_stage = { stagdir = "meltbuild-stage1"; stagprevdir = "$GCCMELT_STAGE_ZERO"; stagprevflavor = "$GCCMELT_ZERO_FLAVOR"; stagsuf = STAGE1; }; melt_build_stage = { stagdir = "meltbuild-stage2"; stagprevdir = "meltbuild-stage1"; stagprevflavor = "quicklybuilt"; stagsuf = STAGE2; }; melt_build_stage = { stagdir = "meltbuild-stage3"; stagprevdir = "meltbuild-stage2"; stagprevflavor = "quicklybuilt"; stagsuf = STAGE3; };