From: simonmar Date: Wed, 1 May 2002 13:11:24 +0000 (+0000) Subject: [project @ 2002-05-01 13:11:24 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~2074 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=d7c977f78cb1f71ff5b30a198dc04c64f00088d5 [project @ 2002-05-01 13:11:24 by simonmar] Do 'make boot' then 'make all' as separate steps (fixes problem with parallel make). --- diff --git a/Makefile b/Makefile index e5b2eb7..97717f4 100644 --- a/Makefile +++ b/Makefile @@ -331,7 +331,8 @@ all :: @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ for i in $(SUBDIRS); do \ if [ -d $$i ]; then \ - $(MAKE) -C $$i boot all; \ + $(MAKE) -C $$i boot; \ + $(MAKE) -C $$i all; \ if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ fi; \ done