]> code.delx.au - gnu-emacs/blob - test/automated/data/flymake/Makefile
Avoid errors in 'newline'
[gnu-emacs] / test / automated / data / flymake / Makefile
1 # Makefile for flymake tests
2
3 CC_OPTS = -Wall
4
5 ## Recent gcc (e.g. 4.8.2 on RHEL7) can automatically colorize their output,
6 ## which can confuse flymake. Set GCC_COLORS to disable that.
7 ## This only seems to be an issue in batch mode, where you would not
8 ## normally use flymake, so it seems like just avoiding the issue
9 ## in this test is fine. Set flymake-log-level to 3 to investigate.
10 check-syntax:
11 GCC_COLORS= $(CC) $(CC_OPTS) ${CHK_SOURCES}
12
13 # eof