1testprog: main.o 2 $(LINK.c) -o testsprog main.o 3 4main.o: main.c header.h 5 $(COMPILE.c) main.c 6 7clean: 8 $(RM) main.o testprog 9 10lint: main.c header.h 11 $(LINT) main.c 12