mach

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

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

 1all: foo bar baz
 2
 3foo:
 4	@echo foo
 5	@echo no error
 6
 7bar:
 8	@false
 9	@echo error here
10
11baz:
12	@echo baz
13	@echo something