-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsources.mk
185 lines (153 loc) · 3.5 KB
/
sources.mk
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
PKG_CONFIG ?= pkg-config
libsvc_SRCS += \
libsvc.c \
misc.c \
task.c \
htsbuf.c \
json.c \
dbl.c \
dial.c \
dns.c \
utf8.c \
tcp.c \
trace.c \
irc.c \
cfg.c \
cmd.c \
talloc.c \
memstream.c \
sock.c \
ntv.c \
ntv_json.c \
ntv_binary.c \
ntv_msgpack.c \
ntv_cbor.c \
ntv_xml.c \
intvec.c \
strvec.c \
murmur3.c \
mbuf.c \
trap.c \
err.c \
aws.c \
acme.c \
fpipe.c \
tbm.c \
cookie.c \
gcp.c \
azure.c \
libsvc_INCS += \
libsvc.h \
misc.h \
task.h \
htsbuf.h \
json.h \
dbl.h \
dial.h \
utf8.h \
tcp.h \
trace.h \
irc.h \
cfg.h \
cmd.h \
talloc.h \
memstream.h \
sock.h \
intvec.h \
strvec.h \
init.h \
murmur3.h \
mbuf.h \
ifeq (${WITH_OPENSSL},yes)
CFLAGS += $(shell $(PKG_CONFIG) --cflags openssl) -DWITH_OPENSSL
LDFLAGS += $(shell $(PKG_CONFIG) --libs openssl)
endif
ifeq ($(shell uname),Linux)
LDFLAGS += -ldl #for trap handler
endif
libsvc_SRCS += http_client.c
libsvc_INCS += http_client.h
##############################################################
# Curl
##############################################################
ifeq (${WITH_CURL},yes)
CFLAGS += -DWITH_CURL
ifeq ($(shell uname),Darwin)
LDFLAGS += -lcurl -lz -liconv
endif
ifeq ($(shell uname),Linux)
CFLAGS += $(shell $(PKG_CONFIG) --cflags libcurl)
LDFLAGS += $(shell $(PKG_CONFIG) --libs libcurl)
endif
libsvc_SRCS += http_client_curl.c
libsvc_SRCS += curlhelpers.c
libsvc_INCS += curlhelpers.h
else
libsvc_SRCS += http_client_builtin.c
WITH_HTTP_PARSER := yes
endif
##############################################################
# MYSQL
##############################################################
ifeq (${WITH_MYSQL},yes)
libsvc_SRCS += db.c
libsvc_INCS += db.h
CFLAGS += $(shell mysql_config --cflags) -DWITH_MYSQL
LDFLAGS += $(shell mysql_config --libs_r)
endif
##############################################################
# Websocket client
##############################################################
ifeq (${WITH_WS_CLIENT},yes)
WITH_HTTP_PARSER := yes
libsvc_SRCS += websocket_client.c
libsvc_INCS += websocket_client.h
WITH_WEBSOCKET := yes
CFLAGS += -DWITH_WS_CLIENT
endif
##############################################################
# HTTP Server
##############################################################
ifeq (${WITH_HTTP_SERVER},yes)
libsvc_SRCS += http.c
libsvc_INCS += http.h
WITH_ASYNCIO := yes
WITH_WEBSOCKET := yes
WITH_HTTP_PARSER := yes
CFLAGS += -DWITH_HTTP_SERVER
LDFLAGS += -lz
endif
ifeq (${WITH_HTTP_PARSER},yes)
libsvc_SRCS += http_parser.c
endif
##############################################################
# TCP server
##############################################################
ifeq (${WITH_TCP_SERVER},yes)
CFLAGS += -DWITH_TCP_SERVER
libsvc_SRCS += tcp_server.c
endif
##############################################################
# AsyncIO
##############################################################
ifeq (${WITH_ASYNCIO},yes)
libsvc_SRCS += asyncio.c stream.c
libsvc_INCS += asyncio.h stream.h
CFLAGS += -DWITH_ASYNCIO
endif
##############################################################
# Control socket
##############################################################
ifeq (${WITH_CTRLSOCK},yes)
libsvc_SRCS += ctrlsock.c
libsvc_INCS += ctrlsock.h
CFLAGS += -DWITH_CTRLSOCK
endif
##############################################################
# Websocket common
##############################################################
ifeq (${WITH_WEBSOCKET},yes)
libsvc_SRCS += websocket.c
libsvc_INCS += websocket.h
LDFLAGS += -lz
endif