# A very simple makefile3
#

CC=gcc

all:hello.o driver.o
	$(CC) $(CFLAGS)  hello.o driver.o -o hello

# without this .PHONY directive, if file "all" exists, the
# "all" rule will not be applied
.PHONY: all

