summary refs log tree commit diff
path: root/minic
diff options
context:
space:
mode:
Diffstat (limited to 'minic')
-rwxr-xr-xminic/mcc5
1 files changed, 3 insertions, 2 deletions
diff --git a/minic/mcc b/minic/mcc
index 76e0603..509f337 100755
--- a/minic/mcc
+++ b/minic/mcc
@@ -8,5 +8,6 @@ if [ -z "$SRC" ]; then
 	exit 1
 fi
 
-./minic < $SRC | ../lisc/lisc - > $TMP
-[ -s $TMP ] && cc $TMP
+./minic < $SRC > $TMP.ssa    || exit 1
+../lisc/lisc $TMP.ssa > $TMP || exit 1
+cc $TMP