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