summaryrefslogtreecommitdiffstats
path: root/rules/host-icu.make
blob: 898ea46c4149d7171564a985885ae0b3cae5971b (plain)
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
# -*-makefile-*-
#
# Copyright (C) 2012 by Michael Olbrich <m.olbrich@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_ICU) += host-icu

HOST_ICU_SUBDIR	= $(ICU_SUBDIR)

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

#
# autoconf
#
HOST_ICU_CONF_TOOL	:= autoconf
HOST_ICU_CONF_OPT	:= \
	$(HOST_AUTOCONF) \
	--enable-icu-config \
	--disable-debug \
	--enable-release \
	--disable-strict \
	--enable-shared \
	--disable-static \
	--enable-draft \
	--enable-renaming \
	--disable-tracing \
	--disable-plugins \
	--enable-dyload \
	--disable-rpath \
	--disable-weak-threads \
	--disable-extras \
	--disable-icuio \
	--disable-layoutex \
	--enable-tools \
	--disable-fuzzer \
	--disable-tests \
	--disable-samples

# ----------------------------------------------------------------------------
# Install
# ----------------------------------------------------------------------------

# only the build tree is needed for icu
$(STATEDIR)/host-icu.install:
	@$(call targetinfo)
	@$(call touch)

# vim: syntax=make