-
Notifications
You must be signed in to change notification settings - Fork 23
/
Makefile.in
96 lines (72 loc) · 2.63 KB
/
Makefile.in
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#******************************************************************************
#
# Copyright (C) 1999-2014, International Business Machines
# Corporation and others. All Rights Reserved.
#
#******************************************************************************
srcdir=@srcdir@
top_srcdir=@top_srcdir@
AUTOCONF = @AUTOCONF@
## Build directory information
top_builddir = .
subdir = .
include $(top_builddir)/icuapps.mk
CPPFLAGS+=$(CPPFLAGS_APPUTIL)
## Locale Explorer depends on usort [runtime].
# Don't change this ordering!
# TODO: disable obsolete and test by option.
OBS=obsolete test
SUBDIRS= $(OBS) apputil usort locexp ubrowse dumpdat XMLConverter nbrowser idnbrowser convexp translitdemo scompare redemo icudemos ucd icusegments webdemo/collation
# calexpo
## Extra files to remove for 'make clean'
CLEANFILES = *~
## List of phony targets
.PHONY : all all-local all-recursive install install-local \
install-recursive clean clean-local clean-recursive distclean \
distclean-local distclean-recursive dist dist-recursive dist-local \
check check-recursive check-local
## Clear suffix list
.SUFFIXES :
## List of standard targets
all: all-recursive all-local
install: all install-recursive install-local
clean: clean-recursive clean-local
distclean : distclean-recursive distclean-local
odist: dist-recursive dist-local
check: all check-recursive check-local
## Recursive targets
all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive:
@dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
local_target="$$target-local"; \
else \
local_target="$$target"; \
fi; \
(cd $$subdir && $(MAKE) $$local_target); \
done; \
if test "$$dot_seen" = "no"; then \
$(MAKE) "$$target-local" || exit 1; \
fi
all-local:
install-local:
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
check-local:
# If autoconf wasn't detected, then 'true' is run.
#$(srcdir)/configure : $(srcdir)/configure.in
# cd $(srcdir) && $(AUTOCONF)
distclean-local:
rm -f Makefile config.cache config.log config.status icuapps.mk
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
icuapps.mk: $(srcdir)/icuapps.mk.in $(top_builddir)/config.status
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
config.status: $(srcdir)/configure
env PATH=$$PATH:`dirname @ICU_CONFIG@` ./config.status --recheck