#
# Makefile --
#

CC = gcc -std=c99
CFLAGS = -O2 -Wall -Werror

OBJ = main.o hello.o

all: hello

hello: $(OBJ)
	$(CC) -o hello $(OBJ)

hello.o: hello.c hello.h
main.o: main.c hello.h

clean:
	rm -f hello $(OBJ)
