libqbe/minic/mcc

14 lines
190 B
Text
Raw Normal View History

2015-10-12 14:32:48 -04:00
#!/bin/sh
2015-10-12 17:48:34 -04:00
TMP=/tmp/minic.s
2015-10-12 14:32:48 -04:00
SRC=$1
if [ -z "$SRC" ]; then
echo "usage: ./mcc file.c" 1>&2
exit 1
fi
2015-10-13 14:29:58 -04:00
./minic < $SRC > $TMP.ssa || exit 1
../lisc/lisc $TMP.ssa > $TMP || exit 1
cc $TMP