hello: hello.o                # Meaning: target hello depends of hello.o   
	gcc -o hello hello.o  # Command to make the target


hello.o: hello.c              # Meaning: target hello.o depends of hello.c
	gcc -c hello.c        # Command to make the target
