show_info:
	@echo
	@echo "The targets in this makefile are:"
	@echo
	@echo "helloc: compile the hello.c program"
	@echo "hellocpp: compile the hello.cpp program"
	@echo "both: compile both of the above"
	@echo

# This is a comment
both: helloc hellocpp

helloc:
	gcc hello.c -o hello

hellocpp:
	g++ hello.cpp -o hello-c++

clean:
	rm -f hello hello-c++
