diff options
author | Russell King <rmk@arm.linux.org.uk> | 2014-08-04 20:54:35 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-05 14:56:08 +0200 |
commit | 468bb10b87cbb02ae8c38c39412dbd00d4b4a9f4 (patch) | |
tree | 3e66b39d505459caa8880842732c20acada8923f /src | |
parent | ada488d011fb7633e9ac724e2d7831073957a83b (diff) |
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>
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 1 |
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) |