CC := gcc

VPATH = src header

bin/hello.exe: bin/hello.o 
	$(CC) -o $@ $^
bin/hello.o: hello.c
	$(CC) -c -o $@ $<
bin/hello.o: hello.h

.PHONY: clean

clean:
	-$(RM) bin/hello.exe bin/hello.o
