]> git.ipfire.org Git - people/ms/strongswan.git/blame - Android.mk
apidoc: Fix make target dependency find precedence
[people/ms/strongswan.git] / Android.mk
CommitLineData
1be32988
TB
1LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
2e0b478a
TB
4# the executables that should be installed on the final system have to be added
5# to PRODUCT_PACKAGES in
6# build/target/product/core.mk
7# possible executables are
67307ad7 8# starter - allows to control and configure the daemon from the command line
fff4b74d 9# charon - the IKE daemon
67307ad7 10# scepclient - SCEP client
1cde0a51 11
67307ad7
TB
12# if you enable starter or scepclient (see above) uncomment the proper
13# lines here
2e0b478a 14# strongswan_BUILD_STARTER := true
67307ad7 15# strongswan_BUILD_SCEPCLIENT := true
0ad58f01 16
1be32988
TB
17# this is the list of plugins that are built into libstrongswan and charon
18# also these plugins are loaded by default (if not changed in strongswan.conf)
162621ed 19strongswan_CHARON_PLUGINS := android-log openssl fips-prf random nonce pubkey \
9804fcce 20 pkcs1 pkcs8 pem xcbc hmac kernel-netlink socket-default android-dns \
ef73bb52 21 stroke eap-identity eap-mschapv2 eap-md5 eap-gtc
1be32988 22
67307ad7
TB
23ifneq ($(strongswan_BUILD_SCEPCLIENT),)
24# plugins loaded by scepclient
36f2e11c 25strongswan_SCEPCLIENT_PLUGINS := openssl curl fips-prf random pkcs1 pkcs7 pem
67307ad7
TB
26endif
27
bb3357e8
TB
28strongswan_STARTER_PLUGINS := kernel-netlink
29
9227a3b3
TB
30# list of all plugins - used to enable them with the function below
31strongswan_PLUGINS := $(sort $(strongswan_CHARON_PLUGINS) \
67307ad7
TB
32 $(strongswan_STARTER_PLUGINS) \
33 $(strongswan_SCEPCLIENT_PLUGINS))
9227a3b3 34
3fa8d773 35include $(LOCAL_PATH)/Android.common.mk
1be32988
TB
36
37# includes
551b0202 38strongswan_PATH := $(LOCAL_PATH)
197dbf5f 39libcurl_PATH := external/strongswan-support/libcurl/include
551b0202 40libgmp_PATH := external/strongswan-support/gmp
73940eb7 41openssl_PATH := external/openssl/include
1be32988 42
eae49aff 43# some definitions
eae49aff
TB
44strongswan_DIR := "/system/bin"
45strongswan_SBINDIR := "/system/bin"
46strongswan_PIDDIR := "/data/misc/vpn"
47strongswan_PLUGINDIR := "$(strongswan_IPSEC_DIR)/ipsec"
48strongswan_CONFDIR := "/system/etc"
49strongswan_STRONGSWAN_CONF := "$(strongswan_CONFDIR)/strongswan.conf"
50
1be32988
TB
51# CFLAGS (partially from a configure run using droid-gcc)
52strongswan_CFLAGS := \
53 -Wno-format \
54 -Wno-pointer-sign \
f9622e8c 55 -Wno-pointer-arith \
1be32988
TB
56 -Wno-sign-compare \
57 -Wno-strict-aliasing \
58 -DHAVE___BOOL \
59 -DHAVE_STDBOOL_H \
60 -DHAVE_ALLOCA_H \
61 -DHAVE_ALLOCA \
62 -DHAVE_CLOCK_GETTIME \
3e4ce886 63 -DHAVE_DLADDR \
1be32988
TB
64 -DHAVE_PTHREAD_COND_TIMEDWAIT_MONOTONIC \
65 -DHAVE_PRCTL \
66 -DHAVE_LINUX_UDP_H \
67 -DHAVE_STRUCT_SADB_X_POLICY_SADB_X_POLICY_PRIORITY \
68 -DHAVE_IPSEC_MODE_BEET \
69 -DHAVE_IPSEC_DIR_FWD \
61c950d9
TB
70 -DOPENSSL_NO_EC \
71 -DOPENSSL_NO_ECDSA \
72 -DOPENSSL_NO_ECDH \
73 -DOPENSSL_NO_ENGINE \
980ca1f7 74 -DCONFIG_H_INCLUDED \
946be4d3
TB
75 -DCAPABILITIES \
76 -DCAPABILITIES_NATIVE \
1be32988 77 -DMONOLITHIC \
9866c26c 78 -DUSE_IKEV1 \
088020fb 79 -DUSE_IKEV2 \
20c99eda 80 -DUSE_BUILTIN_PRINTF \
b66a3b3d 81 -DDEBUG \
1be32988
TB
82 -DROUTING_TABLE=0 \
83 -DROUTING_TABLE_PRIO=220 \
eae49aff 84 -DVERSION=\"$(strongswan_VERSION)\" \
eae49aff
TB
85 -DPLUGINDIR=\"$(strongswan_PLUGINDIR)\" \
86 -DIPSEC_DIR=\"$(strongswan_DIR)\" \
87 -DIPSEC_PIDDIR=\"$(strongswan_PIDDIR)\" \
88 -DIPSEC_CONFDIR=\"$(strongswan_CONFDIR)\" \
89 -DSTRONGSWAN_CONF=\"$(strongswan_STRONGSWAN_CONF)\" \
1be32988
TB
90 -DDEV_RANDOM=\"/dev/random\" \
91 -DDEV_URANDOM=\"/dev/urandom\"
92
93# only for Android 2.0+
94strongswan_CFLAGS += \
95 -DHAVE_IN6ADDR_ANY
96
1cde0a51
TB
97strongswan_BUILD := \
98 charon \
99 libcharon \
100 libhydra \
101 libstrongswan \
ba5b559b 102 libtncif \
19737434
TB
103 libtnccs \
104 libimcv
1cde0a51
TB
105
106ifneq ($(strongswan_BUILD_STARTER),)
107strongswan_BUILD += \
1cde0a51
TB
108 starter \
109 stroke \
110 ipsec
111endif
112
67307ad7
TB
113ifneq ($(strongswan_BUILD_SCEPCLIENT),)
114strongswan_BUILD += \
115 scepclient
116endif
117
1be32988 118include $(addprefix $(LOCAL_PATH)/src/,$(addsuffix /Android.mk, \
1cde0a51 119 $(sort $(strongswan_BUILD))))