Skip to content

Instantly share code, notes, and snippets.

View abecodes's full-sized avatar
💭
🙈 🙉 🙊 🦄

Abe Nonym abecodes

💭
🙈 🙉 🙊 🦄
View GitHub Profile
@abecodes
abecodes / gist:22793793b234ab6e3cdfa14176c1b96a
Created January 8, 2021 09:48
makefile-parallel-builds
build_parallel: build_job_1 build_job_2 build_job_3
build:
@$(MAKE) build_parallel -j$(shell sysctl hw.ncpu | grep -o '[0-9]\+')
@echo "[ok]"