algol-of-code/compile.sh

8 lines
100 B
Bash
Raw Normal View History

#!/bin/sh
set -xe
marst src/$1.a60 -o c/$1.c
gcc -O3 -lalgol -lm c/$1.c obj/util.o -o exe/$1.exe