11 lines
185 B
Bash
Executable file
11 lines
185 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
target=$(cat .target)
|
|
|
|
[ -n "$target" ] || exit 1
|
|
|
|
make generate
|
|
|
|
printf "\nBuild complete. Running...\n==========================\n\n"
|
|
|
|
time "./output/$target" "$@"
|