aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2015-05-18 19:38:13 -0400
committerFranklin Wei <git@fwei.tk>2015-05-18 19:38:13 -0400
commitf5c7e492d8d6b7b4fa1298342ea6157bd2ada564 (patch)
treecbfc8b7c5e5dfce6aac62b49f5cc50735da38663 /Makefile
parent9b9697747aa55651680b196d4930203ef15d1c47 (diff)
downloadmarket-sim-f5c7e492d8d6b7b4fa1298342ea6157bd2ada564.zip
market-sim-f5c7e492d8d6b7b4fa1298342ea6157bd2ada564.tar.gz
market-sim-f5c7e492d8d6b7b4fa1298342ea6157bd2ada564.tar.bz2
market-sim-f5c7e492d8d6b7b4fa1298342ea6157bd2ada564.tar.xz
refactor csv parsing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 22f290d..c05ba83 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CC = cc
SRC := $(wildcard src/*.c)
OBJ := $(SRC:.c=.o)
-CFLAGS = -Isrc/ -O0 -g -Wall -Wextra -std=c99
+CFLAGS = -Isrc/ -O0 -g -Wall -Wextra -std=c99 -fsanitize=address
HEADERS := $(wildcard src/*.h)