From 468bb10b87cbb02ae8c38c39412dbd00d4b4a9f4 Mon Sep 17 00:00:00 2001 From: Russell King Date: Mon, 4 Aug 2014 20:54:35 +0100 Subject: Ensure top level makefile serialises sub-makes We must ensure that the subdirectories are built in the correct order, otherwise the link fails. Disable parallel make in the top level makefile, so that only the lower level makefiles benefit from parallel make. Signed-off-by: Russell King --- src/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Makefile b/src/Makefile index ab9a228..c9e5181 100644 --- a/src/Makefile +++ b/src/Makefile @@ -10,6 +10,7 @@ DIRS=minigallium etnaviv driver fb fb_rawshader replay test2d utils DIRS_REV=egl .PHONY: all clean install rev $(DIRS) $(DIRS_REV) +.NOTPARALLEL: all: CMD = all all: $(DIRS) -- cgit