2015-11-24 21:48:58 +00:00
|
|
|
# Makefile for flymake tests
|
|
|
|
|
2017-09-28 12:06:56 +01:00
|
|
|
CC_OPTS = -Wall -Wextra
|
2015-11-24 21:48:58 +00:00
|
|
|
|
|
|
|
## Recent gcc (e.g. 4.8.2 on RHEL7) can automatically colorize their output,
|
|
|
|
## which can confuse flymake. Set GCC_COLORS to disable that.
|
|
|
|
## This only seems to be an issue in batch mode, where you would not
|
|
|
|
## normally use flymake, so it seems like just avoiding the issue
|
|
|
|
## in this test is fine. Set flymake-log-level to 3 to investigate.
|
|
|
|
check-syntax:
|
2018-12-15 15:08:28 -08:00
|
|
|
GCC_COLORS= gcc $(CC_OPTS) ${CHK_SOURCES} || true
|
2015-11-24 21:48:58 +00:00
|
|
|
|
|
|
|
# eof
|