diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-06-16 08:53:41 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-06-16 08:53:41 +0000 |
commit | f684f630a90eea64a13542c3bb0a1ab54a5067b7 (patch) | |
tree | 78dad3c53b00b6154a5898aee88b27bd007545af /libraries | |
parent | 2dfd2ac773482f26e393a199e9d04fc9c23d5794 (diff) | |
download | haskell-f684f630a90eea64a13542c3bb0a1ab54a5067b7.tar.gz |
Add support for 'make help' in subdirectories
Including help for directory-specific targets, such as 'make 1' in ghc
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libraries/Makefile b/libraries/Makefile index 238a73bbfe..98cc8bf38d 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -5,3 +5,11 @@ include $(TOP)/mk/sub-makefile.mk .PHONY: 1 1 : +$(TOPMAKE) stage1_libs + +.PHONY: extra-help +help : extra-help +extra-help : + @echo " make 1" + @echo + @echo " Build all libraries that are built by the stage1 GHC" + @echo |