dots/70-make/profile

7 lines
116 B
Plaintext
Raw Permalink Normal View History

#!/bin/sh
# protect against missing 'nproc'
if [ -x "$(command -v nproc)" ]; then
export MAKEOPTS="-j$(nproc)"
fi