.PHONY: all
all: hellovalgrind

hellovalgrind: hellovalgrind.c
	gcc -g -o hellovalgrind hellovalgrind.c

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

