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