all: hello

HDRS = hello.h
SRCS = hello.c

ALL_SRCS = $(HDRS) $(SRCS)

hello: $(ALL_SRCS)
	echo "Building $< ..."
	gcc -o hello $(SRCS)
	echo "Built $>"