view ctobin @ 132:1f238280047f

Some work on expression parsing in new parser
author Mike Pavone <pavone@retrodev.com>
date Fri, 05 Nov 2010 01:23:25 -0400
parents e556416e9c91
children a68e6828d896
line wrap: on
line source

#!/bin/sh

if test ! -f "$1.c"; then
	echo "C file missing! Maybe you need to do a full compile?"
	exit 1
fi

cp runtime/* build/
cp "$1.c" build/
cd build
bin=`echo $1 | sed s/\.rhope//`

if test -f "$bin"; then
	rm "$bin"
fi

if test -z $CC; then
	CC="gcc"
fi

file=$1
shift
echo "$CC -o $bin $@ $file.c blueprint.c context.c fixed_alloc.c object.c"
$CC -o $bin $@ "$file.c" blueprint.c context.c fixed_alloc.c object.c

cd ..