]> git.ipfire.org Git - people/ms/strongswan.git/blob - Android.mk.in
2b51d3ea180714cafb795a437a22472419f90b0f
[people/ms/strongswan.git] / Android.mk.in
1 LOCAL_PATH := $(call my-dir)
2 include $(CLEAR_VARS)
3
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
8 # starter - allows to control and configure the daemon from the command line
9 # charon - the IKE daemon
10 # scepclient - SCEP client
11
12 # if you enable starter or scepclient (see above) uncomment the proper
13 # lines here
14 # strongswan_BUILD_STARTER := true
15 # strongswan_BUILD_SCEPCLIENT := true
16
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)
19 strongswan_CHARON_PLUGINS := android-log openssl fips-prf random nonce pubkey \
20 pkcs1 pem xcbc hmac kernel-netlink socket-default android \
21 stroke eap-identity eap-mschapv2 eap-md5
22
23 ifneq ($(strongswan_BUILD_SCEPCLIENT),)
24 # plugins loaded by scepclient
25 strongswan_SCEPCLIENT_PLUGINS := openssl curl fips-prf random pkcs1 pem
26 endif
27
28 strongswan_STARTER_PLUGINS := kernel-netlink
29
30 # list of all plugins - used to enable them with the function below
31 strongswan_PLUGINS := $(sort $(strongswan_CHARON_PLUGINS) \
32 $(strongswan_STARTER_PLUGINS) \
33 $(strongswan_SCEPCLIENT_PLUGINS))
34
35 # helper macros to only add source files for plugins included in the list above
36 # source files are relative to the android.mk that called the macro
37 plugin_enabled = $(filter $(1), $(strongswan_PLUGINS))
38 add_plugin = $(if $(call plugin_enabled,$(1)), \
39 $(patsubst $(LOCAL_PATH)/%,%, \
40 $(wildcard \
41 $(subst %,$(subst -,_,$(strip $(1))), \
42 $(LOCAL_PATH)/plugins/%/%*.c \
43 ) \
44 ) \
45 ) \
46 )
47
48 # includes
49 strongswan_PATH := $(LOCAL_PATH)
50 libvstr_PATH := external/strongswan-support/vstr/include
51 libcurl_PATH := external/strongswan-support/libcurl/include
52 libgmp_PATH := external/strongswan-support/gmp
53 openssl_PATH := external/openssl/include
54
55 # some definitions
56 strongswan_VERSION := "@PACKAGE_VERSION@"
57 strongswan_DIR := "/system/bin"
58 strongswan_SBINDIR := "/system/bin"
59 strongswan_PIDDIR := "/data/misc/vpn"
60 strongswan_PLUGINDIR := "$(strongswan_IPSEC_DIR)/ipsec"
61 strongswan_CONFDIR := "/system/etc"
62 strongswan_STRONGSWAN_CONF := "$(strongswan_CONFDIR)/strongswan.conf"
63
64 # CFLAGS (partially from a configure run using droid-gcc)
65 strongswan_CFLAGS := \
66 -Wno-format \
67 -Wno-pointer-sign \
68 -Wno-pointer-arith \
69 -Wno-sign-compare \
70 -Wno-strict-aliasing \
71 -DHAVE___BOOL \
72 -DHAVE_STDBOOL_H \
73 -DHAVE_ALLOCA_H \
74 -DHAVE_ALLOCA \
75 -DHAVE_CLOCK_GETTIME \
76 -DHAVE_PTHREAD_COND_TIMEDWAIT_MONOTONIC \
77 -DHAVE_PRCTL \
78 -DHAVE_LINUX_UDP_H \
79 -DHAVE_STRUCT_SADB_X_POLICY_SADB_X_POLICY_PRIORITY \
80 -DHAVE_IPSEC_MODE_BEET \
81 -DHAVE_IPSEC_DIR_FWD \
82 -DOPENSSL_NO_EC \
83 -DOPENSSL_NO_ECDSA \
84 -DOPENSSL_NO_ECDH \
85 -DOPENSSL_NO_ENGINE \
86 -DCONFIG_H_INCLUDED \
87 -DCAPABILITIES \
88 -DCAPABILITIES_NATIVE \
89 -DMONOLITHIC \
90 -DUSE_IKEV1 \
91 -DUSE_IKEV2 \
92 -DUSE_VSTR \
93 -DDEBUG \
94 -DROUTING_TABLE=0 \
95 -DROUTING_TABLE_PRIO=220 \
96 -DVERSION=\"$(strongswan_VERSION)\" \
97 -DPLUGINDIR=\"$(strongswan_PLUGINDIR)\" \
98 -DIPSEC_DIR=\"$(strongswan_DIR)\" \
99 -DIPSEC_PIDDIR=\"$(strongswan_PIDDIR)\" \
100 -DIPSEC_CONFDIR=\"$(strongswan_CONFDIR)\" \
101 -DSTRONGSWAN_CONF=\"$(strongswan_STRONGSWAN_CONF)\" \
102 -DDEV_RANDOM=\"/dev/random\" \
103 -DDEV_URANDOM=\"/dev/urandom\"
104
105 # only for Android 2.0+
106 strongswan_CFLAGS += \
107 -DHAVE_IN6ADDR_ANY
108
109 strongswan_BUILD := \
110 charon \
111 libcharon \
112 libhydra \
113 libstrongswan \
114 libtncif \
115 libtnccs
116
117 ifneq ($(strongswan_BUILD_STARTER),)
118 strongswan_BUILD += \
119 starter \
120 stroke \
121 ipsec
122 endif
123
124 ifneq ($(strongswan_BUILD_SCEPCLIENT),)
125 strongswan_BUILD += \
126 scepclient
127 endif
128
129 include $(addprefix $(LOCAL_PATH)/src/,$(addsuffix /Android.mk, \
130 $(sort $(strongswan_BUILD))))