-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathatom.mk
More file actions
65 lines (53 loc) · 1.26 KB
/
Copy pathatom.mk
File metadata and controls
65 lines (53 loc) · 1.26 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
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
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := libtransport-tls
LOCAL_CATEGORY_PATH := libs
LOCAL_DESCRIPTION := TLS Transport library
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
LOCAL_CFLAGS := -DTTLS_API_EXPORTS -fvisibility=hidden -std=gnu99
LOCAL_SRC_FILES := \
src/ttls.c \
src/ttls_async.c \
src/ttls_bio.c \
src/ttls_socket.c \
src/ttls_utils.c
LOCAL_LIBRARIES := \
libcrypto \
libfutils \
libpomp \
libtransport-packet \
libtransport-socket \
libulog
include $(BUILD_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := ttls-server
LOCAL_CATEGORY_PATH := multimedia
LOCAL_DESCRIPTION := TLS Transport library server test program
LOCAL_CFLAGS := -std=gnu99
LOCAL_SRC_FILES := \
tests/ttls_server.c
LOCAL_LIBRARIES := \
libcrypto \
libfutils \
libpomp \
libtransport-packet \
libtransport-socket \
libtransport-tls \
libulog
include $(BUILD_EXECUTABLE)
include $(CLEAR_VARS)
LOCAL_MODULE := ttls-client
LOCAL_CATEGORY_PATH := multimedia
LOCAL_DESCRIPTION := TLS Transport library client test program
LOCAL_CFLAGS := -std=gnu99
LOCAL_SRC_FILES := \
tests/ttls_client.c
LOCAL_LIBRARIES := \
libcrypto \
libfutils \
libpomp \
libtransport-packet \
libtransport-socket \
libtransport-tls \
libulog
include $(BUILD_EXECUTABLE)