summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2017-11-09 14:24:46 -0500
committerCorey Farrell <git@cfware.com>2017-11-09 14:30:05 -0500
commit066d1ab82e0f041f0ba49c91c4b8cfaa158648aa (patch)
tree23b76392f604c148f2f5098a83653e68c94e75ff /Makefile
parent93b0163f77c99191143ba50ddbe7c084019e5406 (diff)
Build System: Disable parallel make in the root Makefile.
This ensures that the root Makefile runs only a single target at a time. SUBMAKE will still honor requested parallelism, so 'make -j8' will build one directory at a time but allow 8 jobs at once when building a sub directory. This will fix some display glitches related to rebuild of XML documentation. It will also prevent some edge case errors where bundled pjproject needs to be rebuild before other parts of Asterisk. Change-Id: I4f2ec6fbbec1ada0ccb1109a28ea303524239b1e
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 8048f5915..e37dd90fd 100644
--- a/Makefile
+++ b/Makefile
@@ -1111,3 +1111,6 @@ check-alembic: makeopts
FORCE:
+# This only stops targets within the root Makefile from building in parallel.
+.NOTPARALLEL:
+