10 lines
109 B
Bash
10 lines
109 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
target=$(cat .target)
|
||
|
|
||
|
[ -n "$target" ] || exit 1
|
||
|
|
||
|
make generate
|
||
|
|
||
|
"./output/$target" "$@"
|