Makefile.in revision 51cfa1a9a96cad34675a6415fe86dfdf3f525bb6
1## Makefile.in for ICU tests
2## Copyright (c) 1999-2007, International Business Machines Corporation and
3## others. All Rights Reserved.
4
5## Source directory information
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8
9top_builddir = ..
10
11include $(top_builddir)/icudefs.mk
12
13## Build directory information
14subdir = test
15
16@ICUIO_TRUE@IOTEST = iotest
17
18## Files to remove for 'make clean'
19CLEANFILES = *~
20
21SUBDIRS = testdata intltest $(IOTEST) cintltst
22
23## List of phony targets
24.PHONY : everything all all-local all-recursive install install-local		\
25install-recursive clean clean-local clean-recursive distclean		\
26distclean-local distclean-recursive dist dist-recursive dist-local	\
27check check-recursive check-local
28
29## Clear suffix list
30.SUFFIXES :
31
32## List of standard targets
33everything: all-recursive all-local
34all:
35ifneq ($(RECURSIVE),YES)
36	@echo simply use \`make\' \(or \`make everything\'\) to do all
37endif
38
39install: install-recursive install-local
40clean: clean-recursive clean-local
41distclean : distclean-recursive distclean-local
42	$(RMV) hdrtst/Makefile
43	$(RMV) perf/convperf/Makefile
44
45dist: dist-recursive dist-local
46check: everything check-recursive check-local
47check-recursive: all-recursive
48
49## Recursive targets
50all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive:
51	@dot_seen=no; \
52	target=`echo $@ | sed s/-recursive//`; \
53	list='$(SUBDIRS)'; for subdir in $$list; do \
54	  echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \
55	  if test "$$subdir" = "."; then \
56	    dot_seen=yes; \
57	    local_target="$$target-local"; \
58	  else \
59	    local_target="$$target"; \
60	  fi; \
61	  (cd $$subdir && $(MAKE) $$local_target) || exit; \
62	done; \
63	if test "$$dot_seen" = "no"; then \
64	  $(MAKE) "$$target-local" || exit; \
65	fi
66
67all-local:
68
69install-local:
70
71dist-local:
72
73clean-local:
74	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
75
76distclean-local: clean-local
77	$(RMV) Makefile
78
79check-local: all-local
80
81Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
82	cd $(top_builddir) \
83	&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
84
85