diff options
author | Kyle J. Van Berendonck <kvanberendonck@gmail.com> | 2014-03-29 20:59:58 +1100 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-04-21 22:31:29 -0500 |
commit | 4842dde46b28b2c48fc65003b27403a4ed7acfcd (patch) | |
tree | 41ab2f70355eeb92b56548162ce9ea5c1e538071 /Makefile | |
parent | 9ca17f8850aeaf1fd2109532338da2ffc0e8be1b (diff) | |
download | haskell-4842dde46b28b2c48fc65003b27403a4ed7acfcd.tar.gz |
Fix `make help`
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,10 +30,10 @@ default : all # For help, type 'make help' .PHONY: help -help : +help: @cat MAKEHELP -ifneq "$(findstring clean,$(MAKECMDGOALS))" "" +ifneq "$(filter clean help,$(MAKECMDGOALS))" "" -include mk/config.mk else include mk/config.mk |