1CC ::= cc
2CFLAGS ::= -O0
3LDFLAGS ::=
4CPPFLAGS ::=
5
6main: main.o myfunc.o
7 $(CC) -o $@ $^
A work-in-progress implementation of make(1)
git clone https://git.8pit.net/mach.git
1CC ::= cc
2CFLAGS ::= -O0
3LDFLAGS ::=
4CPPFLAGS ::=
5
6main: main.o myfunc.o
7 $(CC) -o $@ $^