diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-05-24 17:31:35 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-05-25 19:17:29 +0100 |
commit | 6f36790b812ebf4fde87a26e611d249e6c978045 (patch) | |
tree | bbd3074e0241bc099362dc2f74c8869c76c22131 /Makefile | |
parent | d8dd3cf954a9bb77d9caa64290fcea0d1abb32ec (diff) | |
download | haskell-6f36790b812ebf4fde87a26e611d249e6c978045.tar.gz |
Add an echo target to the build system
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -45,7 +45,7 @@ endif include mk/custom-settings.mk # No need to update makefiles for these targets: -REALGOALS=$(filter-out binary-dist binary-dist-prep bootstrapping-files framework-pkg clean clean_% distclean maintainer-clean show help test fulltest,$(MAKECMDGOALS)) +REALGOALS=$(filter-out binary-dist binary-dist-prep bootstrapping-files framework-pkg clean clean_% distclean maintainer-clean show echo help test fulltest,$(MAKECMDGOALS)) # configure touches certain files even if they haven't changed. This # can mean a lot of unnecessary recompilation after a re-configure, so @@ -93,7 +93,7 @@ clean distclean maintainer-clean: $(filter clean_%, $(MAKECMDGOALS)) : clean_% : $(MAKE) -r --no-print-directory -f ghc.mk $@ CLEANING=YES -bootstrapping-files show: +bootstrapping-files show echo: $(MAKE) -r --no-print-directory -f ghc.mk $@ ifeq "$(darwin_TARGET_OS)" "1" |