forked from antirez/lua-cmsgpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
87 lines (68 loc) · 2.62 KB
/
Makefile
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
##### Available defines for CMSGPACK_CFLAGS #####
##
## USE_INTERNAL_ISINF: Workaround for Solaris platforms missing isinf().
## DISABLE_INVALID_NUMBERS: Permanently disable invalid JSON numbers:
## NaN, Infinity, hex.
##
## Optional built-in number conversion uses the following defines:
## USE_INTERNAL_FPCONV: Use builtin strtod/dtoa for numeric conversions.
## IEEE_BIG_ENDIAN: Required on big endian architectures.
## MULTIPLE_THREADS: Must be set when Lua CMSGPACK may be used in a
## multi-threaded application. Requries _pthreads_.
##### Build defaults #####
LUA_VERSION = 5.1
TARGET = cmsgpack.so
PREFIX = /usr/local
#CFLAGS = -g -Wall -pedantic -fno-inline
CFLAGS = -O3 -Wall -pedantic -DNDEBUG -std=c99
CMSGPACK_CFLAGS = -fpic
CMSGPACK_LDFLAGS = -shared
LUA_INCLUDE_DIR ?= $(PREFIX)/include/luajit-2.1
LUA_CMODULE_DIR ?= $(PREFIX)/lib/lua/$(LUA_VERSION)
LUA_MODULE_DIR ?= $(PREFIX)/share/lua/$(LUA_VERSION)
LUA_BIN_DIR ?= $(PREFIX)/bin
##### Platform overrides #####
##
## Tweak one of the platform sections below to suit your situation.
##
## See http://lua-users.org/wiki/BuildingModules for further platform
## specific details.
## Linux
## FreeBSD
#LUA_INCLUDE_DIR = $(PREFIX)/include/lua51
## MacOSX (Macports)
#PREFIX = /opt/local
#CMSGPACK_LDFLAGS = -bundle -undefined dynamic_lookup
## Solaris
#PREFIX = /home/user/opt
#CC = gcc
#CMSGPACK_CFLAGS = -fpic -DUSE_INTERNAL_ISINF
## Windows (MinGW)
#TARGET = cmsgpack.dll
#PREFIX = /home/user/opt
#CMSGPACK_CFLAGS = -DDISABLE_INVALID_NUMBERS
#CMSGPACK_LDFLAGS = -shared -L$(PREFIX)/lib -llua51
#LUA_BIN_SUFFIX = .lua
##### Number conversion configuration #####
## Use Libc support for number conversion (default)
#FPCONV_OBJS = fpconv.o
## Use built in number conversion
#FPCONV_OBJS = g_fmt.o dtoa.o
#CMSGPACK_CFLAGS += -DUSE_INTERNAL_FPCONV
## Compile built in number conversion for big endian architectures
#CMSGPACK_CFLAGS += -DIEEE_BIG_ENDIAN
## Compile built in number conversion to support multi-threaded
## applications (recommended)
#CMSGPACK_CFLAGS += -pthread -DMULTIPLE_THREADS
#CMSGPACK_LDFLAGS += -pthread
##### End customisable sections #####
BUILD_CFLAGS = -I$(LUA_INCLUDE_DIR) $(CMSGPACK_CFLAGS)
OBJS = lua_cmsgpack.o
.PHONY: all clean
.c.o:
$(CC) -c $(CFLAGS) $(CPPFLAGS) $(BUILD_CFLAGS) -o $@ $<
all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(LDFLAGS) $(CMSGPACK_LDFLAGS) -o $@ $(OBJS)
clean:
rm -f *.o $(TARGET)