8e28da7d3d
file to make porting easier. X-SVN-Rev: 2772
107 lines
2.8 KiB
Makefile
107 lines
2.8 KiB
Makefile
#******************************************************************************
|
|
#
|
|
# Copyright (C) 1998-2000, International Business Machines
|
|
# Corporation and others. All Rights Reserved.
|
|
#
|
|
#******************************************************************************
|
|
## Top-level Makefile.in for ICU
|
|
## Stephen F. Booth
|
|
|
|
## Install directory information
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
include $(top_srcdir)/icudefs.mk
|
|
|
|
## Build directory information
|
|
top_builddir = ..
|
|
subdir = data
|
|
|
|
## Platform-specific setup
|
|
include @platform_make_fragment@
|
|
|
|
## Optional directory setup
|
|
@EXTRAS_TRUE@EXTRA = extra
|
|
@EXTRAS_FALSE@EXTRA =
|
|
@TESTS_TRUE@TEST = test
|
|
@TESTS_FALSE@TEST =
|
|
@SAMPLES_TRUE@SAMPLE = samples
|
|
@SAMPLES_FALSE@SAMPLE =
|
|
|
|
## Files to remove for 'make clean'
|
|
CLEANFILES = *~
|
|
|
|
DOCDIRS =
|
|
SUBDIRS =
|
|
|
|
## Extra files to install [nothing at present]
|
|
EXTRA_DATA =
|
|
|
|
## List of phony targets
|
|
.PHONY : all all-local all-recursive install install-local install-udata install-udata-files install-udata-dlls \
|
|
install-recursive clean clean-local clean-recursive distclean \
|
|
distclean-local distclean-recursive doc dist dist-local dist-recursive \
|
|
check check-local check-recursive builddata
|
|
|
|
## Clear suffix list
|
|
.SUFFIXES :
|
|
|
|
## List of standard targets
|
|
all: all-local all-recursive
|
|
install: install-recursive install-local
|
|
clean: clean-recursive clean-local
|
|
distclean : distclean-recursive distclean-local
|
|
dist: 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) || exit; \
|
|
done; \
|
|
if test "$$dot_seen" = "no"; then \
|
|
$(MAKE) "$$target-local" || exit; \
|
|
fi
|
|
|
|
all-local: builddata
|
|
|
|
install-local:
|
|
|
|
dist-local:
|
|
|
|
clean-local:
|
|
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
|
|
ifneq ($(wildcard .links),)
|
|
$(RMV) UnicodeData-$(UNICODE_VERSION).txt thaidict.brk unidata .links
|
|
endif
|
|
|
|
distclean-local: clean-local
|
|
$(RMV) Makefile
|
|
|
|
check-local:
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
cd $(top_builddir) \
|
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
builddata: UnicodeData-$(UNICODE_VERSION).txt thaidict.brk
|
|
|
|
UnicodeData-$(UNICODE_VERSION).txt: $(top_srcdir)/../data/UnicodeData-$(UNICODE_VERSION).txt
|
|
$(RMV) $@ && ln -s $< $@
|
|
touch .links
|
|
|
|
thaidict.brk: $(top_srcdir)/../data/thaidict.brk
|
|
$(RMV) $@ && ln -s $< $@
|
|
$(RMV) unidata && ln -s $(top_srcdir)/../data/unidata .
|
|
touch .links
|
|
|