Makefile 457 B

1234567891011121314
  1. # Makefile for flymake tests
  2. CC_OPTS = -Wall
  3. ## Recent gcc (e.g. 4.8.2 on RHEL7) can automatically colorize their output,
  4. ## which can confuse flymake. Set GCC_COLORS to disable that.
  5. ## This only seems to be an issue in batch mode, where you would not
  6. ## normally use flymake, so it seems like just avoiding the issue
  7. ## in this test is fine. Set flymake-log-level to 3 to investigate.
  8. check-syntax:
  9. GCC_COLORS= $(CC) $(CC_OPTS) ${CHK_SOURCES}
  10. # eof