2018-04-29 16:38:57 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
2018-07-22 12:24:36 +00:00
|
|
|
# GNU Mes --- Maxwell Equations of Software
|
2018-04-29 16:38:57 +00:00
|
|
|
# Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
|
|
#
|
2018-07-22 12:24:36 +00:00
|
|
|
# This file is part of GNU Mes.
|
2018-04-29 16:38:57 +00:00
|
|
|
#
|
2018-07-22 12:24:36 +00:00
|
|
|
# GNU Mes is free software; you can redistribute it and/or modify it
|
2018-04-29 16:38:57 +00:00
|
|
|
# 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.
|
|
|
|
#
|
2018-07-22 12:24:36 +00:00
|
|
|
# GNU Mes is distributed in the hope that it will be useful, but
|
2018-04-29 16:38:57 +00:00
|
|
|
# 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
|
2018-07-22 12:24:36 +00:00
|
|
|
# along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2018-04-29 16:38:57 +00:00
|
|
|
|
2019-06-08 13:36:22 +00:00
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./config.sh
|
2018-04-29 16:38:57 +00:00
|
|
|
|
2018-11-06 19:29:35 +00:00
|
|
|
. ${srcdest}build-aux/trace.sh
|
2018-06-12 05:05:33 +00:00
|
|
|
GUILE_AUTO_COMPILE=0
|
2018-05-25 06:05:02 +00:00
|
|
|
|
2018-04-29 16:38:57 +00:00
|
|
|
SCM_FILES="
|
2019-06-08 13:36:22 +00:00
|
|
|
module/mes/getopt-long.scm
|
|
|
|
module/mes/guile.scm
|
|
|
|
module/mes/misc.scm
|
|
|
|
module/mes/test.scm
|
|
|
|
module/mescc/M1.scm
|
|
|
|
module/mescc/as.scm
|
|
|
|
module/mescc/bytevectors.scm
|
|
|
|
module/mescc/compile.scm
|
2020-06-06 17:51:45 +00:00
|
|
|
module/mescc/armv4/as.scm
|
|
|
|
module/mescc/armv4/info.scm
|
2019-06-08 13:36:22 +00:00
|
|
|
module/mescc/i386/as.scm
|
|
|
|
module/mescc/i386/info.scm
|
|
|
|
module/mescc/x86_64/as.scm
|
|
|
|
module/mescc/x86_64/info.scm
|
|
|
|
module/mescc/info.scm
|
|
|
|
module/mescc.scm
|
|
|
|
module/mescc/mescc.scm
|
|
|
|
module/mescc/preprocess.scm
|
2018-05-25 06:05:02 +00:00
|
|
|
"
|
2018-04-29 16:38:57 +00:00
|
|
|
|
2018-07-21 10:02:43 +00:00
|
|
|
SCRIPTS="
|
2019-06-08 13:36:22 +00:00
|
|
|
build-aux/mes-snarf.scm
|
2018-07-21 10:02:43 +00:00
|
|
|
"
|
|
|
|
|
2018-04-29 16:38:57 +00:00
|
|
|
export host=$($GUILE -c "(display %host-type)")
|
2018-05-25 06:05:02 +00:00
|
|
|
|
2018-07-25 06:14:13 +00:00
|
|
|
abs=$srcdest
|
2018-07-07 15:31:06 +00:00
|
|
|
if [ "$GUILE_EFFECTIVE_VERSION" = "2.0" ]; then
|
2018-07-25 06:14:13 +00:00
|
|
|
srcdest=$abs_top_srcdir/
|
2018-07-07 15:31:06 +00:00
|
|
|
fi
|
|
|
|
|
2018-07-21 10:02:43 +00:00
|
|
|
for i in $SCM_FILES $SCRIPTS; do
|
2018-07-25 06:14:13 +00:00
|
|
|
b=$(basename $i)
|
|
|
|
go=${i%%.scm}.go
|
2019-06-08 13:36:22 +00:00
|
|
|
f=${srcdest}$i
|
|
|
|
if test $f -nt $go; then
|
2020-10-07 11:55:06 +00:00
|
|
|
trace "GUILEC $f" $GUILD compile $GUILD_OPTIMIZE -L ${srcdest}module -L ${srcdest}build-aux -L ${srcdest}scripts -o $go $f
|
2018-05-25 06:05:02 +00:00
|
|
|
fi
|
|
|
|
done
|