#!/bin/sh
# SPDX-FileCopyrightText: Chris Pressey, the creator of this work, has dedicated it to the public domain.
# For more information, please refer to <https://unlicense.org/>
# SPDX-License-Identifier: Unlicense
PROG=turmac
if command -v ghc >/dev/null 2>&1; then
echo "building $PROG.exe with ghc"
(cd src && ghc --make Main.hs -o ../bin/$PROG.exe)
else
echo "ghc not found, not building $PROG.exe"
fi