docs: Explain how one might try a parallel build

Change-Id: I1a6f205f098e8cd380e5ce3812487b70bbd4a44b
diff --git a/README.md b/README.md
index 4ff16fe..7aa5672 100644
--- a/README.md
+++ b/README.md
@@ -33,6 +33,23 @@
 It is *not* safe to perform incremental builds after changing an "important" setting.
 Please check their manual for details.
 Using `ccache` might help, but a significant time is wasted in `configure` steps which are not parallelized :( as of October 2017.
+This can be hacked by patching Buildroot's top-level `Makefile`, but note that one cannot easily debug stuff afterwards:
+
+```diff
+diff --git a/Makefile b/Makefile
+index 79db7fe..905099a 100644
+--- a/Makefile
++++ b/Makefile
+@@ -114,7 +114,7 @@ endif
+ # this top-level Makefile in parallel comment the ".NOTPARALLEL" line and
+ # use the -j<jobs> option when building, e.g:
+ #      make -j$((`getconf _NPROCESSORS_ONLN`+1))
+-.NOTPARALLEL:
+ 
+ # absolute path
+ TOPDIR := $(CURDIR)
+```
+
 
 ## Installing updates to a device