A work-in-progress implementation of make(1)
git clone https://git.8pit.net/mach.git
https://git.8pit.net/mach.git
1FOO = BAR 2BAR = 42 3$(FOO) = 23 4 5target: 6 @echo $(BAR)
1FOO = BAR
2BAR = 42
3$(FOO) = 23
4
5target:
6 @echo $(BAR)