aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2015-05-17 17:23:18 -0400
committerFranklin Wei <git@fwei.tk>2015-05-17 17:23:18 -0400
commit8e9a52ceae1f2e0fac76d06ff5e6a2170dcdd1bb (patch)
tree11868a8886f35f802c14f091d28b69c4d9abedc4 /Makefile
parentc13b48095f91b6c277854b9970c59c82943af74f (diff)
downloadmarket-sim-8e9a52ceae1f2e0fac76d06ff5e6a2170dcdd1bb.zip
market-sim-8e9a52ceae1f2e0fac76d06ff5e6a2170dcdd1bb.tar.gz
market-sim-8e9a52ceae1f2e0fac76d06ff5e6a2170dcdd1bb.tar.bz2
market-sim-8e9a52ceae1f2e0fac76d06ff5e6a2170dcdd1bb.tar.xz
fix some memory leaks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e49c926..69d2366 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CC = cc
SRC := $(wildcard src/*.c)
OBJ := $(SRC:.c=.o)
-CFLAGS = -Isrc/ -O3 -g -Wall -fsanitize=address -std=c99
+CFLAGS = -Isrc/ -O3 -g -Wall -std=c99
HEADERS := $(wildcard src/*.h)