Disable gcc color in test/automated/data/flymake/Makefile
[emacs.git] / test / automated / data / flymake / Makefile
bloba92db78b46fbed6c697d2a4583fc23f68ee107ea
1 # Makefile for flymake tests
3 CC_OPTS = -Wall
5 ## Recent gcc's (e.g. 4.8.2 on RHEL7) can automatically colorize their output,
6 ## which can confuse flymake. Set GCC_COLORS to disable that.
7 ## TODO is this something that should be fixed in flymake?
8 check-syntax:
9 GCC_COLORS= $(CC) $(CC_OPTS) ${CHK_SOURCES}
11 # eof