forked from libevent/libevent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.mk
More file actions
36 lines (30 loc) · 1.14 KB
/
Copy pathAndroid.mk
File metadata and controls
36 lines (30 loc) · 1.14 KB
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
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE:= libevent_full
LOCAL_MODULE_TAGS:= optional
LOCAL_SRC_FILES := \
buffer.c \
bufferevent.c \
bufferevent_filter.c \
bufferevent_pair.c \
bufferevent_ratelim.c \
bufferevent_sock.c \
epoll.c \
evdns.c \
event.c \
event_tagging.c \
evmap.c \
evrpc.c \
evthread.c \
evutil.c \
evutil_rand.c \
evutil_time.c \
http.c \
listener.c \
log.c \
poll.c \
select.c \
signal.c \
strlcpy.c
LOCAL_C_INCLUDES += $(LOCAL_PATH)/include/
include $(BUILD_STATIC_LIBRARY)