Files
seer/tests/hellosanitizer/Makefile
T
2023-07-22 14:02:16 -05:00

11 lines
194 B
Makefile

.PHONY: all
all: hellosanitizer
hellosanitizer: hellosanitizer.cpp
g++ -g -fsanitize=address -o hellosanitizer hellosanitizer.cpp
.PHONY: clean
clean:
rm -f hellosanitizer hellosanitizer.o