]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/testdata/Makefile.in
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / test / testdata / Makefile.in
CommitLineData
b75a7d8f
A
1#******************************************************************************
2#
3# Copyright (C) 1998-2000, International Business Machines
4# Corporation and others. All Rights Reserved.
5#
6#******************************************************************************
7## Top-level Makefile.in for ICU
8## Stephen F. Booth
9
10## Source directory information
11srcdir = @srcdir@
12top_srcdir = @top_srcdir@
13
14top_builddir = ../..
15
16include $(top_builddir)/icudefs.mk
17
18## Build directory information
19subdir = test/testdata
20
21## Optional directory setup
22@EXTRAS_TRUE@EXTRA = extra
23@EXTRAS_FALSE@EXTRA =
24@TESTS_TRUE@TEST = test
25@TESTS_FALSE@TEST =
26@SAMPLES_TRUE@SAMPLE = samples
27@SAMPLES_FALSE@SAMPLE =
28
29
30## Files to remove for 'make clean'
31CLEANFILES = *~
32
33DOCDIRS =
34SUBDIRS =
35
36## Extra files to install [nothing at present]
37EXTRA_DATA =
38
39## List of phony targets
40.PHONY : all all-local all-recursive install install-local install-udata install-udata-files install-udata-dlls \
41install-recursive clean clean-local clean-recursive distclean \
42distclean-local distclean-recursive doc dist dist-local dist-recursive \
43check check-local check-recursive builddata
44
45## Clear suffix list
46.SUFFIXES :
47
48## List of standard targets
49all: all-local all-recursive
50install: install-recursive install-local
51clean: clean-recursive clean-local
52distclean : distclean-recursive distclean-local
53dist: dist-recursive dist-local
54check: all check-recursive check-local
55
56## Recursive targets
57all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive:
58 @dot_seen=no; \
59 target=`echo $@ | sed s/-recursive//`; \
60 list='$(SUBDIRS)'; for subdir in $$list; do \
61 echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \
62 if test "$$subdir" = "."; then \
63 dot_seen=yes; \
64 local_target="$$target-local"; \
65 else \
66 local_target="$$target"; \
67 fi; \
68 (cd $$subdir && $(MAKE) $$local_target) || exit; \
69 done; \
70 if test "$$dot_seen" = "no"; then \
71 $(MAKE) "$$target-local" || exit; \
72 fi
73
74all-local: builddata
75
76install-local:
77
78dist-local:
79
80clean-local:
81 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
82ifneq ($(wildcard .links),)
83 $(RMV) *.goo *.txt *.bin .links
84endif
85
86distclean-local: clean-local
87 $(RMV) Makefile
88
89check-local:
90
91Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
92 cd $(top_builddir) \
93 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
94
95builddata: default.goo
96
97ifneq ($(srcdir),.)
98
99default.goo: $(srcdir)/default.goo
100 $(RMV) *.goo *.txt *.bin
101 ln -s $(srcdir)/*.goo $(srcdir)/*.txt $(srcdir)/*.bin .
102 touch .links
103
104endif
105