mirror of
https://github.com/mi57730/a2d.git
synced 2024-11-01 10:05:56 +00:00
16 lines
323 B
Bash
16 lines
323 B
Bash
function cecho {
|
|
case $1 in
|
|
red) tput setaf 1 ;;
|
|
green) tput setaf 2 ;;
|
|
yellow) tput setaf 3 ;;
|
|
esac
|
|
echo -e "$2"
|
|
tput sgr0
|
|
}
|
|
|
|
function do_make {
|
|
make $MAKE_FLAGS "$1" \
|
|
&& (cecho green "make $1 good") \
|
|
|| (tput blink ; cecho red "MAKE $1 BAD" ; return 1)
|
|
}
|