# A very simple makefile
#

driver:hello.o driver.o
	gcc hello.o driver.o -o hello

driver.o:
	gcc -c driver.c

hello.o:
	gcc -c hello.c
