From: Ian Lynagh Date: Wed, 20 Jun 2007 12:07:23 +0000 (+0000) Subject: Use .NOTPARALLEL for the libraries Makefile X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=8966ae35cc8ae7a0b415b7fe1a4f6f76efec6f92;p=ghc-hetmet.git Use .NOTPARALLEL for the libraries Makefile --- diff --git a/libraries/Makefile b/libraries/Makefile index 9890f79..dfe81b3 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -24,6 +24,12 @@ default_target: build +# 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) +# when we want to rebuild another library later. +# So for now we just don't do anything in parallel in here. +.NOTPARALLEL: + # Ideally we'd just include something to give us variables # for paths and arguments to tools etc, and those set in mk/build.mk. TOP=..