9 lines
191 B
Bash
9 lines
191 B
Bash
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
source cbuild/colors.sh
|
|
source cbuild/functions.sh
|
|
touch ".rebuild_$1.tmp"
|
|
rm -fv "obj/libs/$1.a"
|
|
myprint "${YELLOW}$1.a will be rebuilt in the next build task"
|