aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2011-05-10 22:32:01 +0930
committerMark Pulford <mark@kyne.com.au>2011-05-10 22:32:01 +0930
commit126470cc7b6c2314c02805e4d00afe04b6b00312 (patch)
tree9dd59bcc02307403410ef405b0f02bf39bd57560 /Makefile
parentc877da6c1f84b19cd2e7e8154b4a0d0e355745a0 (diff)
downloadlua-cjson-126470cc7b6c2314c02805e4d00afe04b6b00312.tar.gz
lua-cjson-126470cc7b6c2314c02805e4d00afe04b6b00312.tar.bz2
lua-cjson-126470cc7b6c2314c02805e4d00afe04b6b00312.zip
Add runtime option for persistent encode buffer
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e2d5339..e96d736 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ LUA_INCLUDE_DIR ?= $(PREFIX)/include
16LUA_LIB_DIR ?= $(PREFIX)/lib/lua/$(LUA_VERSION) 16LUA_LIB_DIR ?= $(PREFIX)/lib/lua/$(LUA_VERSION)
17 17
18#CFLAGS ?= -g -Wall -pedantic -fno-inline 18#CFLAGS ?= -g -Wall -pedantic -fno-inline
19CFLAGS ?= -g -O2 -Wall -pedantic 19CFLAGS ?= -g -O3 -Wall -pedantic
20override CFLAGS += -fpic -I$(LUA_INCLUDE_DIR) -DVERSION=\"$(CJSON_VERSION)\" 20override CFLAGS += -fpic -I$(LUA_INCLUDE_DIR) -DVERSION=\"$(CJSON_VERSION)\"
21LDFLAGS += -lm 21LDFLAGS += -lm
22 22