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
|
#!/bin/sh
#
# tmpcomp -- A temporary script to bootstrap the system
#
# Copyright 2002-2003 Erick Gallesio - I3S-CNRS/ESSI <eg@unice.fr>
#
#
# This program 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 2 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; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
# USA.
#
# Author: Erick Gallesio [eg@unice.fr]
# Creation date: 1-Jan-2002 18:57 (eg)
# Last file update: 11-Feb-2003 20:11 (eg)
#
# This script is only used to compile the different components of the
# system which need compilation. It will not be installed since the
# user version is the stklos-compile script.
if [ $# != 2 ] ;then
echo "Usage: $0 src bytecode-file "
exit 1
fi
in=$1
out=$2
case `uname -s` in
CYGWIN*) sep=";" ;;
*) sep=":" ;;
esac
STKLOS_LOAD_PATH="../lib${sep}../gtklos"
export STKLOS_LOAD_PATH
../src/stklos -b ../src/boot.img -f ../utils/stklos-compile -- \
--output=$out $in && chmod a+x $out
|