Slightly expand README.

This commit is contained in:
Daniel Jones 2014-08-04 13:42:57 -07:00
parent 8cb7110099
commit a29a7207a1
2 changed files with 31 additions and 2 deletions

2
mk.go
View file

@ -301,7 +301,7 @@ func main() {
flag.BoolVar(&dryrun, "n", false, "print commands without actually executing")
flag.BoolVar(&shallowrebuild, "r", false, "force building of just targets")
flag.BoolVar(&rebuildall, "a", false, "force building of all dependencies")
flag.IntVar(&subprocsAllowed, "p", 8, "maximum number of jobs to execute in parallel")
flag.IntVar(&subprocsAllowed, "p", 4, "maximum number of jobs to execute in parallel")
flag.BoolVar(&interactive, "i", false, "prompt before executing rules")
flag.Parse()