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