mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
11 lines
194 B
Makefile
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
|
|
|