Idris2/tests/chez/chez013/run
Kamil Shakirov 4f0c262ddc Add support for OpenBSD
and probably for other *BSD operating systems with minor tweaks
2020-06-17 15:14:54 +06:00

15 lines
217 B
Plaintext
Executable File

case `uname -s` in
OpenBSD|FreeBSD|NetBSD)
MAKE=gmake
;;
*)
MAKE=make
;;
esac
${MAKE} all > /dev/null
$1 --no-banner Struct.idr < input
rm -rf build
${MAKE} clean > /dev/null