diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-06-20 13:20:01 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-06-20 13:20:01 +0000 |
commit | ae1d4548d997731878e8c1220fc996a79f47a3e3 (patch) | |
tree | 1ff69623450e575c81008583a7e49ec7455a5acb | |
parent | 59a2c9ad844edd31ce4550ee047bbe6f5f367ea1 (diff) | |
download | haskell-ae1d4548d997731878e8c1220fc996a79f47a3e3.tar.gz |
default_target should be "all", not "build"
-rw-r--r-- | libraries/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/Makefile b/libraries/Makefile index 85fbc77c12..8d9bd710d5 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -22,7 +22,7 @@ .PHONY: default_target -default_target: build +default_target: all # make doesn't give us an easy way to get the libraries built in # dependency order the first time, but not rebuild base (for example) |