99ac7b59c4
After making a change to the list of builtin functions, run cat src/*.i and move the into src/mes.c:mes_builtins () and, or also after changing the list of fixed symbols in src/mes.c:mes_symbols (), do cat src/*.h > src/builtins.h * build-aux/build.sh.in: Remove snarfing. * build-aux/bootstrap.sh.in: Likewise. * mes/module/mes/display.mes (display): * mes/module/mes/type-0.mes (cell:type-alist): Remove <cell:function>. (function?, builtin?): Remove. * src/builtins.h: New file. * src/mes.c (TFUNCTION): Remove. (struct function): Remove. (apply_builtin): Rewrite from call. (mes_builtins): Rewrite. (init_builtin, make_builtin_type, make_builtin, builtin_name, builtin_arity, builtin, builtin_p, builtin_printer): New function.
54 lines
1.5 KiB
Bash
54 lines
1.5 KiB
Bash
#! /bin/sh
|
|
|
|
# GNU Mes --- Maxwell Equations of Software
|
|
# Copyright © 2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
#
|
|
# This file is part of GNU Mes.
|
|
#
|
|
# GNU Mes 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.
|
|
#
|
|
# GNU Mes 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 GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
set -e
|
|
|
|
. ./config.status
|
|
. ${srcdest}build-aux/config.sh
|
|
|
|
if [ -n "$GUILE" -a "$GUILE" != true ]; then
|
|
sh ${srcdest}build-aux/build-guile.sh
|
|
fi
|
|
|
|
if [ "$gcc_p$tcc_p" ]; then
|
|
sh ${srcdest}build-aux/build-mes.sh
|
|
elif [ -d "$MES_SEED" ]; then
|
|
sh ${srcdest}build-aux/bootstrap-mes.sh
|
|
fi
|
|
|
|
## FIXME: remove this and have user configure/build/install for each compiler?
|
|
unset CFLAGS CPPFLAGS LDFLAGS gcc_p tcc_p posix_p
|
|
MES=guile
|
|
mesc_p=1
|
|
mes_p=1
|
|
mes_arch=x86-mes
|
|
program_prefix=$mes_arch-
|
|
CC="./pre-inst-env mescc"
|
|
|
|
sh ${srcdest}build-aux/build-mes.sh
|
|
cp src/${program_prefix}mes src/mes
|
|
|
|
if [ "$arch" = x86_64 ]; then
|
|
MES_CFLAGS='-m 64'
|
|
mes_arch=x86_64-mes
|
|
program_prefix=$mes_arch-
|
|
sh ${srcdest}build-aux/build-mes.sh
|
|
fi
|