Files
seer/tests/hellovalgrind/Makefile
T
2022-10-16 18:17:24 -05:00

11 lines
164 B
Makefile

.PHONY: all
all: hellovalgrind
hellovalgrind: hellovalgrind.c
gcc -g -o hellovalgrind hellovalgrind.c
.PHONY: clean
clean:
rm -f hellovalgrind hellovalgrind.o