From b395c60f80797e3154cb7954026b1c1ea62d1aec Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Thu, 12 Apr 2018 20:00:01 -0700 Subject: build: prevent make parallelization. * Makefile: add .NOTPARALLEL: special target. This Makfile doesn't support parallel builds; it relies on left-to-right execution of prerequisites in some places. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 505903a7..8d5a8314 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,8 @@ # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +.NOTPARALLEL: + -include config.make VERBOSE := -- cgit v1.2.3