Wirepas SDK
makefile_color.mk
Go to the documentation of this file.
1# Regular Colors
2Black=\033[0;30m
3Red=\033[0;31m
4Green=\033[0;32m
5Yellow=\033[0;33m
6Blue=\033[0;34m
7Purple=\033[0;35m
8Cyan=\033[0;36m
9White=\033[0;37m
10
11# Bold
12BBlack=\033[1;30m
13BRed=\033[1;31m
14BGreen=\033[1;32m
15BYellow=\033[1;33m
16BBlue=\033[1;34m
17BPurple=\033[1;35m
18BCyan=\033[1;36m
19BWhite=\033[1;37m
20
21ifeq ($(no_color),)
22COLOR_CC=$(Green)
23COLOR_LINK=$(Yellow)
24COLOR_INFO=$(Blue)
25COLOR_ERROR=$(BRed)
26COLOR_WARNING=$(Red)
27COLOR_DETAILS=$(White)
28COLOR_END=\033[0m
29endif