Example for Level 3 of the Makefile Exercise

hello: hello.o name.o
    clang -o hello hello.o name.o

hello.o: hello.c name.h
    clang -c hello.c

name.o: name.c name.h
    clang -c name.c