]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/libstrongswan/Android.mk
451983ea08c6597bd6524be7c84ae3cbb385387f
[thirdparty/strongswan.git] / src / libstrongswan / Android.mk
1 LOCAL_PATH := $(call my-dir)
2 include $(CLEAR_VARS)
3
4 # copy-n-paste from Makefile.am
5 LOCAL_SRC_FILES := \
6 library.c library.h \
7 chunk.c chunk.h \
8 debug.c debug.h \
9 enum.c enum.h \
10 settings.h settings.c \
11 printf_hook.c printf_hook.h \
12 asn1/asn1.c asn1/asn1.h \
13 asn1/asn1_parser.c asn1/asn1_parser.h \
14 asn1/oid.c asn1/oid.h \
15 crypto/crypters/crypter.c crypto/crypters/crypter.h \
16 crypto/hashers/hasher.h crypto/hashers/hasher.c \
17 crypto/pkcs9.c crypto/pkcs9.h \
18 crypto/proposal/proposal_keywords.c crypto/proposal/proposal_keywords.h \
19 crypto/prfs/prf.c crypto/prfs/prf.h \
20 crypto/rngs/rng.c crypto/rngs/rng.h \
21 crypto/prf_plus.h crypto/prf_plus.c \
22 crypto/signers/signer.c crypto/signers/signer.h \
23 crypto/crypto_factory.c crypto/crypto_factory.h \
24 crypto/crypto_tester.c crypto/crypto_tester.h \
25 crypto/diffie_hellman.c crypto/diffie_hellman.h \
26 crypto/aead.c crypto/aead.h \
27 crypto/transform.c crypto/transform.h \
28 credentials/credential_factory.c credentials/credential_factory.h \
29 credentials/builder.c credentials/builder.h \
30 credentials/cred_encoding.c credentials/cred_encoding.h \
31 credentials/keys/private_key.c credentials/keys/private_key.h \
32 credentials/keys/public_key.c credentials/keys/public_key.h \
33 credentials/keys/shared_key.c credentials/keys/shared_key.h \
34 credentials/certificates/certificate.c credentials/certificates/certificate.h \
35 credentials/certificates/x509.h credentials/certificates/ac.h \
36 credentials/certificates/crl.h credentials/certificates/crl.c \
37 credentials/certificates/pkcs10.h \
38 credentials/certificates/ocsp_request.h \
39 credentials/certificates/ocsp_response.h credentials/certificates/ocsp_response.c \
40 credentials/certificates/pgp_certificate.h \
41 credentials/ietf_attributes/ietf_attributes.c credentials/ietf_attributes/ietf_attributes.h \
42 credentials/credential_manager.c credentials/credential_manager.h \
43 credentials/sets/auth_cfg_wrapper.c credentials/sets/auth_cfg_wrapper.h \
44 credentials/sets/ocsp_response_wrapper.c credentials/sets/ocsp_response_wrapper.h \
45 credentials/sets/cert_cache.c credentials/sets/cert_cache.h \
46 credentials/sets/mem_cred.c credentials/sets/mem_cred.h \
47 credentials/sets/callback_cred.c credentials/sets/callback_cred.h \
48 credentials/auth_cfg.c credentials/auth_cfg.h credentials/credential_set.h \
49 credentials/cert_validator.h \
50 database/database.h database/database_factory.h database/database_factory.c \
51 fetcher/fetcher.h fetcher/fetcher.c fetcher/fetcher_manager.h fetcher/fetcher_manager.c \
52 eap/eap.h eap/eap.c \
53 plugins/plugin_loader.c plugins/plugin_loader.h plugins/plugin.h \
54 processing/jobs/job.h processing/jobs/job.c \
55 processing/jobs/callback_job.c processing/jobs/callback_job.h \
56 processing/processor.c processing/processor.h \
57 processing/scheduler.c processing/scheduler.h \
58 selectors/traffic_selector.c selectors/traffic_selector.h \
59 threading/thread.h threading/thread.c \
60 threading/thread_value.h threading/thread_value.c \
61 threading/mutex.h threading/mutex.c threading/condvar.h \
62 threading/rwlock.h threading/rwlock.c \
63 threading/lock_profiler.h \
64 utils.h utils.c \
65 utils/host.c utils/host.h \
66 utils/identification.c utils/identification.h \
67 utils/iterator.h \
68 utils/lexparser.c utils/lexparser.h \
69 utils/linked_list.c utils/linked_list.h \
70 utils/hashtable.c utils/hashtable.h \
71 utils/enumerator.c utils/enumerator.h \
72 utils/optionsfrom.c utils/optionsfrom.h \
73 utils/backtrace.c utils/backtrace.h
74
75 # adding the plugin source files
76
77 LOCAL_SRC_FILES += $(call add_plugin, aes)
78
79 LOCAL_SRC_FILES += $(call add_plugin, des)
80
81 LOCAL_SRC_FILES += $(call add_plugin, fips-prf)
82
83 LOCAL_SRC_FILES += $(call add_plugin, gmp)
84 ifneq ($(call plugin_enabled, gmp),)
85 LOCAL_C_INCLUDES += $(libgmp_PATH)
86 LOCAL_SHARED_LIBRARIES += libgmp
87 endif
88
89 LOCAL_SRC_FILES += $(call add_plugin, hmac)
90
91 LOCAL_SRC_FILES += $(call add_plugin, md4)
92
93 LOCAL_SRC_FILES += $(call add_plugin, md5)
94
95 LOCAL_SRC_FILES += $(call add_plugin, openssl)
96 ifneq ($(call plugin_enabled, openssl),)
97 LOCAL_C_INCLUDES += external/openssl/include
98 LOCAL_SHARED_LIBRARIES += libcrypto
99 endif
100
101 LOCAL_SRC_FILES += $(call add_plugin, pem)
102
103 LOCAL_SRC_FILES += $(call add_plugin, pkcs1)
104
105 LOCAL_SRC_FILES += $(call add_plugin, pubkey)
106
107 LOCAL_SRC_FILES += $(call add_plugin, random)
108
109 LOCAL_SRC_FILES += $(call add_plugin, sha1)
110
111 LOCAL_SRC_FILES += $(call add_plugin, sha2)
112
113 LOCAL_SRC_FILES += $(call add_plugin, x509)
114
115 LOCAL_SRC_FILES += $(call add_plugin, xcbc)
116
117 # build libstrongswan ----------------------------------------------------------
118
119 LOCAL_C_INCLUDES += \
120 $(libvstr_PATH)
121
122 LOCAL_CFLAGS := $(strongswan_CFLAGS) \
123 -include $(LOCAL_PATH)/AndroidConfigLocal.h
124
125 LOCAL_MODULE := libstrongswan
126
127 LOCAL_ARM_MODE := arm
128
129 LOCAL_PRELINK_MODULE := false
130
131 LOCAL_SHARED_LIBRARIES += libdl libvstr
132
133 include $(BUILD_SHARED_LIBRARY)
134