#!/bin/bash
# dev/tool/make - make tool support

set -e


######
# Native Dependencies

dev_tool_make_client_packages=( make )


######
# Library Configuration

dev_tool_make_config_init() {
	lib_setting_vars --null make_jobs
}


######
# Public Interface

make_run() {
	local -a opts=()
	! $quiet || opts+=( --quiet )
	[ -z "$make_jobs" ] || opts+=( -j $make_jobs )
	run make "${opts[@]}" "$@"
}

View the Developer Guide Index

View the Reference Manual Index


Generated on Fri Jul 28 14:35:31 PDT 2017 by mcsh d14 v0.23.0.