A work-in-progress implementation of make(1)
git clone https://git.8pit.net/mach.git
https://git.8pit.net/mach.git
1FOO = baz 2FOO ?= bar 3 4all: 5 echo $(FOO)
1FOO = baz
2FOO ?= bar
3
4all:
5 echo $(FOO)