forked from dpolishuk/openssl-android
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApps.mk
87 lines (79 loc) · 1.83 KB
/
Apps.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
# Copyright 2006 The Android Open Source Project
LOCAL_PATH:= $(call my-dir)
local_src_files:= \
apps/app_rand.c \
apps/apps.c \
apps/asn1pars.c \
apps/ca.c \
apps/ciphers.c \
apps/crl.c \
apps/crl2p7.c \
apps/dgst.c \
apps/dh.c \
apps/dhparam.c \
apps/dsa.c \
apps/dsaparam.c \
apps/ecparam.c \
apps/ec.c \
apps/enc.c \
apps/engine.c \
apps/errstr.c \
apps/gendh.c \
apps/gendsa.c \
apps/genpkey.c \
apps/genrsa.c \
apps/nseq.c \
apps/ocsp.c \
apps/openssl.c \
apps/passwd.c \
apps/pkcs12.c \
apps/pkcs7.c \
apps/pkcs8.c \
apps/pkey.c \
apps/pkeyparam.c \
apps/pkeyutl.c \
apps/prime.c \
apps/rand.c \
apps/req.c \
apps/rsa.c \
apps/rsautl.c \
apps/s_cb.c \
apps/s_client.c \
apps/s_server.c \
apps/s_socket.c \
apps/s_time.c \
apps/sess_id.c \
apps/smime.c \
apps/speed.c \
apps/spkac.c \
apps/srp.c \
apps/verify.c \
apps/version.c \
apps/x509.c
local_shared_libraries := \
libssl \
libcrypto
local_c_includes := \
$(LOCAL_PATH)/include/
local_cflags := -DMONOLITH
local_additional_dependencies := $(LOCAL_PATH)/android-config.mk $(LOCAL_PATH)/Apps.mk
include $(CLEAR_VARS)
LOCAL_MODULE:= openssl
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(local_src_files)
LOCAL_SHARED_LIBRARIES := $(local_shared_libraries)
LOCAL_C_INCLUDES := $(local_c_includes)
LOCAL_CFLAGS := $(local_cflags)
LOCAL_ADDITIONAL_DEPENDENCIES := $(local_additional_dependencies)
include $(LOCAL_PATH)/android-config.mk
include $(BUILD_EXECUTABLE)
#include $(CLEAR_VARS)
#LOCAL_MODULE:= openssl
#LOCAL_MODULE_TAGS := optional
#LOCAL_SRC_FILES := $(local_src_files)
#LOCAL_SHARED_LIBRARIES := $(local_shared_libraries)
#LOCAL_C_INCLUDES := $(local_c_includes)
#LOCAL_CFLAGS := $(local_cflags)
#LOCAL_ADDITIONAL_DEPENDENCIES := $(local_additional_dependencies)
#include $(LOCAL_PATH)/android-config.mk
#include $(BUILD_HOST_EXECUTABLE)