From cf4e8ce8803eae2e4c4e37cc6f0f27c8780b693d Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 22 Feb 2018 11:15:47 -0800 Subject: [PATCH] Add -j 2 for top level Makefile. --- lib/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Makefile b/lib/Makefile index dcbab0a4..7b8115a5 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,6 +1,8 @@ SUBDIRS := $(wildcard */.) SUBDIRSCLEAN=$(addsuffix clean,$(SUBDIRS)) +MAKEFLAGS += -j 2 + all: $(SUBDIRS) $(SUBDIRS):