view ctobin @ 82:2e2e55fc12f9

Fix bug with conditionally assigning a literal or input to a named pipe
author Mike Pavone <pavone@retrodev.com>
date Tue, 27 Jul 2010 15:23:32 -0400
parents dbe95bfec970
children 43cc42df26cc
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

$CC -o $bin $2 "$1.c" blueprint.c context.c fixed_alloc.c object.c

cd ..