# Makefile for the Hello Lab
all:
	echo "Makefile called... it is empty so far. "
	#gcc hello3.c -o hello3

clean:
	rm -rf *~ hello3

