diff options
| author | Phillip Lord | 2015-11-24 21:48:58 +0000 |
|---|---|---|
| committer | Phillip Lord | 2015-11-24 21:48:58 +0000 |
| commit | a546a37fcd21c90e1f86ba6262e9388624ade83b (patch) | |
| tree | 9c6662e5f6d68baa6d51b706fbbc4bb6fec3f9e5 /test/lisp | |
| parent | 94bb3d7a808b8ed29336250bf5ffaf636280ee1e (diff) | |
| download | emacs-a546a37fcd21c90e1f86ba6262e9388624ade83b.tar.gz emacs-a546a37fcd21c90e1f86ba6262e9388624ade83b.zip | |
Restore delete Makefiles and fix .gitignore.
* .gitignore: Update Makefiles to changed locations
* test/lisp/progmodes/flymake-resources/Makefile,
test/manual/etags/Makefile,
test/manual/etags/make-src/Makefile,
test/manual/indent/Makefile: Restored and moved to new location.
Diffstat (limited to 'test/lisp')
| -rw-r--r-- | test/lisp/progmodes/flymake-resources/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/lisp/progmodes/flymake-resources/Makefile b/test/lisp/progmodes/flymake-resources/Makefile new file mode 100644 index 00000000000..0f3f39791c8 --- /dev/null +++ b/test/lisp/progmodes/flymake-resources/Makefile | |||
| @@ -0,0 +1,13 @@ | |||
| 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 | ||