blob: 4a2c4ffebd6cb55a36234aa86b68ac3289089d90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# prefix
include $(PRO_DIR)/prefix.mak
# module name
NAMES = lua-cjson
# module type
lua-cjson_TYPE = LIB
# config
lua-cjson_CONFIG = n
# core files
lua-cjson_C_FILES += \
lua-cjson/dtoa \
lua-cjson/g_fmt \
lua-cjson/strbuf \
lua-cjson/lua_cjson
# cflags
# Use internal strtod() / g_fmt() code for performance and disable multi-thread
lua-cjson_CFLAGS += -DNDEBUG -DUSE_INTERNAL_FPCONV
# includes
ifeq ($(RUNTIME),luajit)
lua-cjson_INC_DIRS += ../luajit/luajit/src
lua-cjson_CXFLAGS += -DUSE_LUAJIT
endif
ifeq ($(RUNTIME),lua)
lua-cjson_INC_DIRS += ../lua/lua
lua-cjson_CXFLAGS += -DLUA_COMPAT_5_1 -DLUA_COMPAT_5_2 -DLUA_COMPAT_5_3
endif
# use given system library?
lua-cjson_C_FILES := $(if $(findstring cjson,$(base_LIBNAMES)),,$(lua-cjson_C_FILES))
lua-cjson_INC_FILES := $(if $(findstring cjson,$(base_LIBNAMES)),,$(lua-cjson_INC_FILES))
# suffix
include $(PRO_DIR)/suffix.mak
|