all: hello.o
	${CC} hello.o -o hello
hello.o: hello.c
	${CC} -I . -c hello.c
clean:
	rm -rf *.o
	rm hello
