home *** CD-ROM | disk | FTP | other *** search
Makefile | 1999-08-16 | 2.2 KB | 96 lines |
- ## Makefile.in for ICU samples
- ## Stephen F. Booth
-
- ## Shell to use
- SHELL = @SHELL@
-
- ## Install directory information
- srcdir = @srcdir@
- top_srcdir = @top_srcdir@
- prefix = @prefix@
- exec_prefix = @exec_prefix@
-
- bindir = @bindir@
- sbindir = @sbindir@
- datadir = @datadir@
- libdir = @libdir@
- includedir = @includedir@
-
- pkgdatadir = $(datadir)/@PACKAGE@
- pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-
- ## Build directory information
- top_builddir = ..
- subdir = samples
-
- ## Install program information
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-
- INSTALL = @INSTALL@
- INSTALL_PROGRAM = @INSTALL_PROGRAM@
- INSTALL_DATA = @INSTALL_DATA@
- INSTALL_SCRIPT = @INSTALL_SCRIPT@
-
- ## Package information
- PACKAGE = @PACKAGE@
- VERSION = @VERSION@
-
- ## Files to remove for 'make clean'
- CLEANFILES = *~
-
- SUBDIRS = date cal
-
- ## 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-recursive dist-local \
- check check-recursive check-local
-
- ## Clear suffix list
- .SUFFIXES :
-
- ## List of standard targets
- all: all-recursive all-local
- install: install-recursive install-local
- clean: clean-recursive clean-local
- distclean : distclean-recursive distclean-local
- dist: dist-recursive dist-local
- check: 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); \
- done; \
- if test "$$dot_seen" = "no"; then \
- $(MAKE) "$$target-local" || exit 1; \
- fi
-
- all-local:
-
- install-local:
-
- dist-local:
-
- clean-local:
- test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
-
- check-local:
-
- distclean-local:
- rm -f Makefile
-
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- cd $(top_builddir) \
- && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
-