mach

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

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

1#include <stdio.h>
2
3int
4main(void) {
5	puts("Hello, World!");
6	return 0;
7}