mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
79 lines
2 KiB
Makefile
79 lines
2 KiB
Makefile
## Makefile.in for ICU tools
|
|
## Copyright (c) 1999-2006, International Business Machines Corporation and
|
|
## others. All Rights Reserved.
|
|
|
|
## Source directory information
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
top_builddir = ..
|
|
|
|
include $(top_builddir)/icudefs.mk
|
|
|
|
## Build directory information
|
|
subdir = tools
|
|
|
|
SUBDIRS = toolutil ctestfw makeconv genrb genuca genbrk genctd \
|
|
gennames genpname gencnval gensprep genccode gencmn icupkg pkgdata \
|
|
gentest genprops gencase genbidi gennorm icuswap
|
|
|
|
## 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-local dist-recursive \
|
|
check check-local check-recursive build-local
|
|
|
|
## Clear suffix list
|
|
.SUFFIXES :
|
|
|
|
## List of standard targets
|
|
all: all-recursive
|
|
install: install-recursive
|
|
clean: clean-local clean-recursive
|
|
distclean : distclean-recursive
|
|
dist: dist-recursive
|
|
check: all check-recursive
|
|
|
|
## 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 "$(MAKE)[$(MAKELEVEL)]: 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) || exit; \
|
|
done; \
|
|
if test "$$dot_seen" = "no"; then \
|
|
$(MAKE) "$$target-local" || exit; \
|
|
fi
|
|
|
|
all-local: build-local
|
|
|
|
|
|
## Files to remove for 'make clean'
|
|
CLEANFILES = *~
|
|
|
|
install-local:
|
|
|
|
dist-local:
|
|
|
|
clean-local:
|
|
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
|
|
|
|
# Clean up any old variations..
|
|
distclean-local: clean-local
|
|
$(RMV) Makefile
|
|
|
|
build-local:
|
|
|
|
check-local:
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
cd $(top_builddir) \
|
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|