view compile @ 108:5099c1a96e3f

Mostly fix clicking on the function name in a funcall expression
author Mike Pavone <pavone@retrodev.com>
date Sat, 13 Apr 2013 15:54:53 -0700
parents 7f635666c73d
children 5071d601fe70
line wrap: on
line source

#!/bin/sh

cname=`basename $1`.c

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

./tpc $1 -o $cname

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

bin=`echo $1 | sed s/\.tp//`
shift
gcc $@ -o $bin $cname runtime/object.c -lgc