diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-06-15 13:56:51 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-06-15 13:56:51 +0000 |
commit | 027d73530b293b676490adad5d470918cdc8feb1 (patch) | |
tree | be4afe6b2edd652bcf963792c7eeae680bebc0db | |
parent | 3d328395b68f6a8264711677401ac8a049543e4a (diff) | |
download | haskell-027d73530b293b676490adad5d470918cdc8feb1.tar.gz |
'make 1' in libraries builds just the stage1 libs
i.e. not dph, and hence not stage2
-rw-r--r-- | libraries/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libraries/Makefile b/libraries/Makefile index 900b63971f..238a73bbfe 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -1,3 +1,7 @@ dir = libraries TOP = .. include $(TOP)/mk/sub-makefile.mk + +.PHONY: 1 +1 : + +$(TOPMAKE) stage1_libs |