summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRussell King <rmk@arm.linux.org.uk>2014-08-04 20:54:35 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-08-05 14:56:08 +0200
commit468bb10b87cbb02ae8c38c39412dbd00d4b4a9f4 (patch)
tree3e66b39d505459caa8880842732c20acada8923f
parentada488d011fb7633e9ac724e2d7831073957a83b (diff)
downloadetna_viv-468bb10b87cbb02ae8c38c39412dbd00d4b4a9f4.tar.gz
etna_viv-468bb10b87cbb02ae8c38c39412dbd00d4b4a9f4.tar.xz
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 <rmk@arm.linux.org.uk>
-rw-r--r--src/Makefile1
1 files changed, 1 insertions, 0 deletions
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)