CC = gcc
CFLAGS = -Wall

hello: helloworld.o hellofunction.o
	$(CC) $(CFLAGS) helloworld.o hellofunction.o -o hello

hellorun.o: hello