]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | #****************************************************************************** |
2 | # | |
3 | # Copyright (C) 2000, International Business Machines | |
4 | # Corporation and others. All Rights Reserved. | |
5 | # | |
6 | #****************************************************************************** | |
7 | # This Makefile is used to build the ICU's data. | |
8 | # It is included with the -O option to pkgdata. | |
9 | ||
10 | PLATFORM=@platform@ | |
11 | ||
12 | top_srcdir=@top_srcdir@ | |
13 | srcdir=@srcdir@ | |
14 | top_builddir=../.. | |
15 | ||
16 | include $(top_builddir)/icudefs.mk | |
17 | ||
18 | CPPFLAGS+= -I$(top_builddir)/common -I$(top_srcdir)/common | |
19 | FFLAGS=@FFLAGS@ | |
20 | LIBS=@LIBS@ | |
21 | ICULIBS=$(LIBS) -licu-uc -licu-i18n | |
22 | exec_prefix=@exec_prefix@ | |
23 | prefix=@prefix@ | |
24 | program_transform_name=@program_transform_name@ | |
25 | bindir=@bindir@ | |
26 | sbindir=@sbindir@ | |
27 | libexecdir=@libexecdir@ | |
28 | datadir=@datadir@ | |
29 | sysconfdir=@sysconfdir@ | |
30 | sharedstatedir=@sharedstatedir@ | |
31 | localstatedir=@localstatedir@ | |
32 | libdir=@libdir@ | |
33 | includedir=@includedir@ | |
34 | oldincludedir=@oldincludedir@ | |
35 | infodir=@infodir@ | |
36 | mandir=@mandir@ | |
37 | PACKAGE=@PACKAGE@ | |
38 | VERSION=@VERSION@ | |
39 | ||
40 | INSTALL = @INSTALL@ | |
41 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
42 | INSTALL_DATA = @INSTALL_DATA@ | |
43 | ||
44 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ | |
45 | INSTALL_SCRIPT=@INSTALL_SCRIPT@ | |
46 | INSTALL_DATA=@INSTALL_DATA@ | |
47 | AUTOCONF=@AUTOCONF@ | |
48 | host=@host@ | |
49 | host_alias=@host_alias@ | |
50 | host_cpu=@host_cpu@ | |
51 | host_vendor=@host_vendor@ | |
52 | host_os=@host_os@ | |
53 | LIB_M=@LIB_M@ | |
54 | CPP=@CPP@ | |
55 | U_HAVE_INTTYPES_H=@U_HAVE_INTTYPES_H@ | |
56 | U_IS_BIG_ENDIAN=@U_IS_BIG_ENDIAN@ | |
57 | HAVE_INT8_T=@HAVE_INT8_T@ | |
58 | HAVE_UINT8_T=@HAVE_UINT8_T@ | |
59 | HAVE_INT16_T=@HAVE_INT16_T@ | |
60 | HAVE_UINT16_T=@HAVE_UINT16_T@ | |
61 | HAVE_INT32_T=@HAVE_INT32_T@ | |
62 | HAVE_UINT32_T=@HAVE_UINT32_T@ | |
63 | HAVE_BOOL_T=@HAVE_BOOL_T@ | |
64 | EXTRAS_TRUE=@EXTRAS_TRUE@ | |
65 | EXTRAS_FALSE=@EXTRAS_FALSE@ | |
66 | TESTS_TRUE=@TESTS_TRUE@ | |
67 | TESTS_FALSE=@TESTS_FALSE@ | |
68 | SAMPLES_TRUE=@SAMPLES_TRUE@ | |
69 | SAMPLES_FALSE=@SAMPLES_FALSE@ | |
70 | platform=@platform@ | |
71 | ||
72 | ||
73 | ld_rpath_suf=@ld_rpath_suf@ | |
74 | ||
75 | subdir = tools/tmp | |
76 | ||
77 | ##### Add the following to source/config/Makefile.in | |
78 | ||
79 | GENCCODE=$(top_builddir)/tools/genccode/genccode | |
80 | GENCMN=$(top_builddir)/tools/gencmn/gencmn | |
81 | ||
82 | LPATHS=$(top_builddir)/common:$(top_builddir)/i18n:$(top_builddir)/tools/toolutil | |
83 | ||
84 | TOOL=env $(LDLIBRARYPATH_ENVVAR)=$(LPATHS) | |
85 | ||
86 | ifeq ($(strip $(PLATFORM)),OS390) | |
87 | TOOL= | |
88 | endif | |
89 |