#!/bin/bash
# dev/tool/make - ``make`` Tool Support Configuration
######
# Job Control
# $make_jobs - Number of ``make`` jobs to use
# Default: (Current # of processors) + 1
make_jobs=$(grep processor /proc/cpuinfo |wc -l)
make_jobs=$((make_jobs + 1))