Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 296 Bytes

File metadata and controls

29 lines (18 loc) · 296 Bytes

Make Parallel Builds

Back{: .button}

make -j <number-of-threads>

.ONESHELL:
.DEFAULT: end

end: a b c d
  echo "Ending"

a:
  echo "Hello from A"

b:
  echo "Hello from B"

c:
  echo "Hello from C"

d:
  echo "Hello from D"

.PHONY: a b c d end