mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 19:23:02 +01:00
93 lines
2.3 KiB
Makefile
93 lines
2.3 KiB
Makefile
|
#******************************************************************************
|
||
|
#
|
||
|
# Copyright (C) 1998-2004, International Business Machines
|
||
|
# Corporation and others. All Rights Reserved.
|
||
|
#
|
||
|
#******************************************************************************
|
||
|
## Top-level Makefile.in for ICU
|
||
|
## Stephen F. Booth
|
||
|
|
||
|
## Source directory information
|
||
|
srcdir = @srcdir@
|
||
|
top_srcdir = @top_srcdir@
|
||
|
|
||
|
top_builddir = ../..
|
||
|
|
||
|
include $(top_builddir)/icudefs.mk
|
||
|
|
||
|
## Build directory information
|
||
|
subdir = test/testdata
|
||
|
|
||
|
## Files to remove for 'make clean'
|
||
|
CLEANFILES = *~
|
||
|
|
||
|
SUBDIRS =
|
||
|
|
||
|
## 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 "$(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: builddata
|
||
|
|
||
|
install-local:
|
||
|
|
||
|
dist-local:
|
||
|
|
||
|
clean-local:
|
||
|
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
|
||
|
ifneq ($(wildcard .links),)
|
||
|
$(RMV) *.goo *.txt *.bin .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: default.goo
|
||
|
|
||
|
ifneq ($(srcdir),.)
|
||
|
|
||
|
default.goo: $(srcdir)/default.goo
|
||
|
$(RMV) *.goo *.txt *.bin
|
||
|
ln -s $(srcdir)/*.goo $(srcdir)/*.txt $(srcdir)/*.bin .
|
||
|
touch .links
|
||
|
|
||
|
endif
|
||
|
|