mach

A work-in-progress implementation of make(1)

git clone https://git.8pit.net/mach.git

 1third: second
 2	echo third target
 3
 4second: first
 5	echo second target
 6
 7first:
 8	echo first target
 9
10.SILENT: third second