-
Notifications
You must be signed in to change notification settings - Fork 33
/
Makefile
73 lines (58 loc) · 1.79 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
#################################################################
#
# Binaries we are going to build, and its source code
#
#################################################################
#
OS := $(shell uname)
SRC := mempool.c scaner.c parse_array.c parse_hashtab.c parser.c scan_fp_strict.c scan_fp_relax.c
OBJ := $(SRC:.c=.o)
DEMO := demo
ifeq ($(OS), Darwin)
C_SO_NAME := libljson.dylib
else
C_SO_NAME := libljson.so
endif
#################################################################
#
# Compile and link flags
#
#################################################################
#
CFLAGS := -Wall -O3 -flto -g -DFP_RELAX=0 #-DDEBUG
THE_CFLAGS := $(CFLAGS) -fPIC -Wl,--build-id -MMD -fvisibility=hidden
ifeq ($(OS), Linux)
THE_CFLAGS := $(THE_CFLAGS) -Wl,--build-id
endif
#################################################################
#
# Installtion flags
#
#################################################################
#
PREFIX := /usr/local
LUA_VERSION = 5.1
SO_TARGET_DIR := $(PREFIX)/lib/lua/$(LUA_VERSION)
LUA_TARGET_DIR := $(PREFIX)/share/lua/$(LUA_VERSION)/
#################################################################
#
# Make recipes
#
#################################################################
#
.PHONY = all test clean install
all : $(C_SO_NAME) $(DEMO)
-include dep.txt
${OBJ} : %.o : %.c
$(CC) $(THE_CFLAGS) -DBUILDING_SO -c $<
${C_SO_NAME} : ${OBJ}
$(CC) $(THE_CFLAGS) -DBUILDING_SO $^ -shared -o $@
cat *.d > dep.txt
demo : ${C_SO_NAME} demo.o
$(CC) $(THE_CFLAGS) -Wl,-rpath,. demo.o -L. -lljson -o $@
test :
$(MAKE) -C tests
clean:; rm -f *.o *.so a.out *.d dep.txt demo
install:
install -D -m 755 $(C_SO_NAME) $(DESTDIR)/$(SO_TARGET_DIR)/$(C_SO_NAME)
install -D -m 664 json_decoder.lua $(DESTDIR)/$(LUA_TARGET_DIR)/json_decoder.lua