helloworld: helloworld.o
	cc -o $@ $<

helloworld.o: helloworld.c
	cc -c -o $@ $<

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