7 lines
63 B
Bash
7 lines
63 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
make
|
||
|
|
||
|
if [ "$1" == "debug" ]; then
|
||
|
./out/why2
|
||
|
fi
|