view compile @ 147:f3686f60985d

Sort of working port of framework. Transaction bug seems to be getting in the way. Going to work around, but want the old version in the repo so I can test later.
author Mike Pavone <pavone@retrodev.com>
date Mon, 22 Nov 2010 01:15:02 -0500
parents daf1ffaf7c2c
children
line wrap: on
line source

#!/bin/sh

if test -f "$1.c"; then
	rm "$1.c"
fi

./rhope2c $1

if test ! -s "$1.c"; then
	echo "Compilation to C failed"
	exit 1
fi

./ctobin $@
#cp runtime/* build/
#cp "$1.c" build/
#cd build
#bin=`echo $1 | sed s/\.rhope//`
#
#if test -f "$bin"; then
#	rm "$bin"
#fi
#gcc -Wformat=0 -o $bin $2 "$1.c" blueprint.c context.c fixed_alloc.c object.c