From 9295cc5c683566939aeec74a7c060c50fe64041c Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 22 May 2011 19:23:31 +0200 Subject: [PATCH] Parallel make: Fix pachi being built before some libraries --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f614849..aafc763 100644 --- a/Makefile +++ b/Makefile @@ -86,6 +86,8 @@ SUBDIRS=random replay joseki montecarlo uct uct/policy playout tactics t-unit di all: all-recursive pachi LOCALLIBS=random/random.a replay/replay.a joseki/joseki.a montecarlo/montecarlo.a uct/uct.a uct/policy/uctpolicy.a playout/playout.a tactics/tactics.a t-unit/test.a distributed/distributed.a +$(LOCALLIBS): all-recursive + @ pachi: $(OBJS) pachi.o $(LOCALLIBS) $(call cmd,link) -- 2.11.4.GIT