From 764a47116e87a88f958dc911975810211b122251 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Mon, 11 Apr 2016 00:15:47 -0700 Subject: [PATCH] Use what parallelism we have. --- Gruntfile.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index dcda3beda..73cbd57d2 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -21,11 +21,11 @@ module.exports = (grunt) -> stderr: true failOnError: true build: - command: 'make' + command: 'make -j' full: command: """ make clean - make all + make -j all """.split('\n').join('&&') clean: command: 'make clean'