diff options
| author | Ben Winston | 2025-11-11 14:24:42 -0500 |
|---|---|---|
| committer | Ben Winston | 2025-11-11 14:25:21 -0500 |
| commit | fdb0c375be54b3eb0e104480cde41f0626f85384 (patch) | |
| tree | 9d989093402855522f5aada56233a9752ad8e8a7 /Makefile | |
| parent | 474765bfdf08a18d1bfd7f29a747bd5b29d4b9dc (diff) | |
debug build (thanks asan!)
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,4 +1,7 @@ -.PHONY: build +.PHONY: build debug build: - cc -g later.c -Wall -Werror -o later + cc later.c -Wall -Werror -o later + +debug: + cc later.c -g -fsanitize=address -Wall -Werror -o later |
