aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a7fb15f..e54b51b 100644
--- a/Makefile
+++ b/Makefile
@@ -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