#
# Highlights make output.
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
function make {
if zstyle -t ':omz:module:utility:make' color; then
if (( $+commands[colormake] )); then
colormake "$@"
fi
else
command make "$@"
}
make "$@"