helloworld: helloworld.c
	gcc -o helloworld helloworld.c
	
.PHONY: clean
clean:
	rm -f helloworld helloworld.o
