WHY2/build.sh
2022-04-04 17:48:03 +02:00

9 lines
104 B
Bash

#!/bin/sh
# Build project
make
# Check for 'debug' flag
if [ "$1" == "debug" ]; then
./out/why2
fi