Add jwack, a GNU make-like jobserver.
Theoretically compatible with GNU make's jobserver pipes. Haven't tested that yet.
This commit is contained in:
parent
07d3e3b13c
commit
f77e4b5c91
4 changed files with 162 additions and 0 deletions
|
|
@ -1,6 +1,13 @@
|
|||
import sys, os, errno
|
||||
|
||||
|
||||
def atoi(v):
|
||||
try:
|
||||
return int(v or 0)
|
||||
except ValueError:
|
||||
return 0
|
||||
|
||||
|
||||
def unlink(f):
|
||||
"""Delete a file at path 'f' if it currently exists.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue