xscii/compile.sh

12 lines
190 B
Bash

#!/bin/bash
set -xe
gcc -g -ansi -Wall -Wextra -Wpedantic -Werror -Ofast -o xscii xscii.c
# gfortran -o xscii xscii.f90
# gnatmake -o xscii xscii.adb
# fasm -o xscii xscii.fasm
exit