]> git.ipfire.org Git - people/ms/strongswan.git/blob - src/libstrongswan/Android.mk
Build nonce plugin on Android
[people/ms/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 bio/bio_reader.h bio/bio_reader.c bio/bio_writer.h bio/bio_writer.c \
16 crypto/crypters/crypter.c crypto/crypters/crypter.h \
17 crypto/hashers/hasher.h crypto/hashers/hasher.c \
18 crypto/pkcs7.c crypto/pkcs7.h \
19 crypto/pkcs9.c crypto/pkcs9.h \
20 crypto/proposal/proposal_keywords.c crypto/proposal/proposal_keywords.h \
21 crypto/prfs/prf.c crypto/prfs/prf.h \
22 crypto/rngs/rng.c crypto/rngs/rng.h \
23 crypto/nonce_gen.h \
24 crypto/prf_plus.h crypto/prf_plus.c \
25 crypto/signers/signer.c crypto/signers/signer.h \
26 crypto/crypto_factory.c crypto/crypto_factory.h \
27 crypto/crypto_tester.c crypto/crypto_tester.h \
28 crypto/diffie_hellman.c crypto/diffie_hellman.h \
29 crypto/aead.c crypto/aead.h \
30 crypto/transform.c crypto/transform.h \
31 credentials/credential_factory.c credentials/credential_factory.h \
32 credentials/builder.c credentials/builder.h \
33 credentials/cred_encoding.c credentials/cred_encoding.h \
34 credentials/keys/private_key.c credentials/keys/private_key.h \
35 credentials/keys/public_key.c credentials/keys/public_key.h \
36 credentials/keys/shared_key.c credentials/keys/shared_key.h \
37 credentials/certificates/certificate.c credentials/certificates/certificate.h \
38 credentials/certificates/x509.h credentials/certificates/ac.h \
39 credentials/certificates/crl.h credentials/certificates/crl.c \
40 credentials/certificates/pkcs10.h \
41 credentials/certificates/ocsp_request.h \
42 credentials/certificates/ocsp_response.h credentials/certificates/ocsp_response.c \
43 credentials/certificates/pgp_certificate.h \
44 credentials/ietf_attributes/ietf_attributes.c credentials/ietf_attributes/ietf_attributes.h \
45 credentials/credential_manager.c credentials/credential_manager.h \
46 credentials/sets/auth_cfg_wrapper.c credentials/sets/auth_cfg_wrapper.h \
47 credentials/sets/ocsp_response_wrapper.c credentials/sets/ocsp_response_wrapper.h \
48 credentials/sets/cert_cache.c credentials/sets/cert_cache.h \
49 credentials/sets/mem_cred.c credentials/sets/mem_cred.h \
50 credentials/sets/callback_cred.c credentials/sets/callback_cred.h \
51 credentials/auth_cfg.c credentials/auth_cfg.h credentials/credential_set.h \
52 credentials/cert_validator.h database/database.h database/database.c \
53 database/database_factory.h database/database_factory.c \
54 fetcher/fetcher.h fetcher/fetcher.c fetcher/fetcher_manager.h fetcher/fetcher_manager.c \
55 eap/eap.h eap/eap.c \
56 pen/pen.h pen/pen.c \
57 plugins/plugin_loader.c plugins/plugin_loader.h plugins/plugin.h \
58 plugins/plugin_feature.c plugins/plugin_feature.h \
59 processing/jobs/job.h processing/jobs/job.c \
60 processing/jobs/callback_job.c processing/jobs/callback_job.h \
61 processing/processor.c processing/processor.h \
62 processing/scheduler.c processing/scheduler.h \
63 selectors/traffic_selector.c selectors/traffic_selector.h \
64 threading/thread.h threading/thread.c \
65 threading/thread_value.h threading/thread_value.c \
66 threading/mutex.h threading/mutex.c threading/condvar.h \
67 threading/semaphore.h threading/semaphore.c \
68 threading/rwlock.h threading/rwlock.c \
69 threading/lock_profiler.h \
70 utils.h utils.c \
71 utils/host.c utils/host.h \
72 utils/identification.c utils/identification.h \
73 utils/lexparser.c utils/lexparser.h \
74 utils/linked_list.c utils/linked_list.h \
75 utils/hashtable.c utils/hashtable.h \
76 utils/enumerator.c utils/enumerator.h \
77 utils/optionsfrom.c utils/optionsfrom.h \
78 utils/backtrace.c utils/backtrace.h
79
80 # adding the plugin source files
81
82 LOCAL_SRC_FILES += $(call add_plugin, aes)
83
84 LOCAL_SRC_FILES += $(call add_plugin, curl)
85 ifneq ($(call plugin_enabled, curl),)
86 LOCAL_C_INCLUDES += $(libcurl_PATH)
87 LOCAL_SHARED_LIBRARIES += libcurl
88 endif
89
90 LOCAL_SRC_FILES += $(call add_plugin, des)
91
92 LOCAL_SRC_FILES += $(call add_plugin, fips-prf)
93
94 LOCAL_SRC_FILES += $(call add_plugin, gmp)
95 ifneq ($(call plugin_enabled, gmp),)
96 LOCAL_C_INCLUDES += $(libgmp_PATH)
97 LOCAL_SHARED_LIBRARIES += libgmp
98 endif
99
100 LOCAL_SRC_FILES += $(call add_plugin, hmac)
101
102 LOCAL_SRC_FILES += $(call add_plugin, md4)
103
104 LOCAL_SRC_FILES += $(call add_plugin, md5)
105
106 LOCAL_SRC_FILES += $(call add_plugin, nonce)
107
108 LOCAL_SRC_FILES += $(call add_plugin, openssl)
109 ifneq ($(call plugin_enabled, openssl),)
110 LOCAL_C_INCLUDES += external/openssl/include
111 LOCAL_SHARED_LIBRARIES += libcrypto
112 endif
113
114 LOCAL_SRC_FILES += $(call add_plugin, pem)
115
116 LOCAL_SRC_FILES += $(call add_plugin, pkcs1)
117
118 LOCAL_SRC_FILES += $(call add_plugin, pkcs11)
119
120 LOCAL_SRC_FILES += $(call add_plugin, pubkey)
121
122 LOCAL_SRC_FILES += $(call add_plugin, random)
123
124 LOCAL_SRC_FILES += $(call add_plugin, sha1)
125
126 LOCAL_SRC_FILES += $(call add_plugin, sha2)
127
128 LOCAL_SRC_FILES += $(call add_plugin, x509)
129
130 LOCAL_SRC_FILES += $(call add_plugin, xcbc)
131
132 # build libstrongswan ----------------------------------------------------------
133
134 LOCAL_C_INCLUDES += \
135 $(libvstr_PATH)
136
137 LOCAL_CFLAGS := $(strongswan_CFLAGS) \
138 -include $(LOCAL_PATH)/AndroidConfigLocal.h
139
140 LOCAL_MODULE := libstrongswan
141
142 LOCAL_MODULE_TAGS := optional
143
144 LOCAL_ARM_MODE := arm
145
146 LOCAL_PRELINK_MODULE := false
147
148 LOCAL_SHARED_LIBRARIES += libdl libvstr
149
150 include $(BUILD_SHARED_LIBRARY)
151