Skip to content

Commit

Permalink
🎨 Makefile color fix on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
testauthbasic committed Jun 22, 2017
1 parent 2e7e0a3 commit 94ebfd3
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions mk/colors.mk
Expand Up @@ -19,15 +19,15 @@ WHITE_R=
else

# Colors definitions
CLEAR= \e[0m
CLEAR= \033[0m

# Regular
BLACK_R= \e[0;30m
RED_R= \e[0;31m
GREEN_R= \e[0;32m
YELLOW_R= \e[0;33m
BLUE_R= \e[0;34m
PURPLE_R= \e[0;35m
CYAN_R= \e[0;36m
WHITE_R= \e[0;37m
BLACK_R= \033[0;30m
RED_R= \033[0;31m
GREEN_R= \033[0;32m
YELLOW_R= \033[0;33m
BLUE_R= \033[0;34m
PURPLE_R= \033[0;35m
CYAN_R= \033[0;36m
WHITE_R= \033[0;37m
endif

0 comments on commit 94ebfd3

Please sign in to comment.