[PATCH 9/9] Add an install target to the regression Makefile
Tim Hentenaar <[email protected]> Wed, 17 Jun 2015 20:56:05 +0200
| Newsgroups | gmane.comp.gnu.indent.bugs |
|---|---|
| Message-ID | <[email protected]> |
This way, 'make install' won't fail. --- ChangeLog | 2 ++ regression/Makefile | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 101bcbb..a6b0eb1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,8 @@ nearest tabstoo. * Fixed recognition of function pointers with multiple levels of indirection by the -npcs stuff. + * Add an 'install' target to the regression Makefile so that + 'make install' doesn't fail. 2015-06-16 Tim Hentenaar <[email protected]> * Use want_blank instead of copying a space to e_code to avoid diff --git a/regression/Makefile b/regression/Makefile index 59d43b0..2852cbe 100644 --- a/regression/Makefile +++ b/regression/Makefile @@ -1,9 +1,13 @@ all: +install: + check: ./TEST distclean: clean clean: - rm -rf output + @rm -rf output + +.PHONY: all install -- 2.3.6