all:	run
run:	helloworld
	./helloworld
helloworld:	helloworld.c
	cc -o $@ helloworld.c
clean:
	@rm -f *.o helloworld
