intl/icu/source/tools/gencmn/Makefile.in

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 ## Makefile.in for ICU - tools/gencmn
     2 ## Copyright (c) 1999-2011, International Business Machines Corporation and
     3 ## others. All Rights Reserved.
     4 ## Steven R. Loomis
     6 ## Source directory information
     7 srcdir = @srcdir@
     8 top_srcdir = @top_srcdir@
    10 top_builddir = ../..
    12 include $(top_builddir)/icudefs.mk
    14 ## Build directory information
    15 subdir = tools/gencmn
    17 TARGET_STUB_NAME = gencmn
    19 SECTION = 8
    21 MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
    24 ## Extra files to remove for 'make clean'
    25 CLEANFILES = *~ $(DEPS) $(MAN_FILES)
    27 ## Target information
    28 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
    30 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
    31 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
    33 OBJECTS = gencmn.o
    35 DEPS = $(OBJECTS:.o=.d)
    37 ## List of phony targets
    38 .PHONY : all all-local install install-local clean clean-local	\
    39 distclean distclean-local dist dist-local check check-local install-man
    41 ## Clear suffix list
    42 .SUFFIXES :
    44 ## List of standard targets
    45 all: all-local
    46 install: install-local
    47 clean: clean-local
    48 distclean : distclean-local
    49 dist: dist-local
    50 check: all check-local
    52 all-local: $(TARGET) $(MAN_FILES)
    54 install-local: all-local install-man
    55 	$(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
    56 	$(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)
    58 install-man: $(MAN_FILES)
    59 	$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
    60 	$(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
    62 dist-local:
    64 clean-local:
    65 	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
    66 	$(RMV) $(TARGET) $(OBJECTS)
    68 distclean-local: clean-local
    69 	$(RMV) Makefile
    71 check-local: all-local
    73 Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
    74 	cd $(top_builddir) \
    75 	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
    77 $(TARGET) : $(OBJECTS)
    78 	$(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
    79 	$(POST_BUILD_STEP)
    81 %.$(SECTION): $(srcdir)/%.$(SECTION).in
    82 	cd $(top_builddir) \
    83 	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
    86 ifeq (,$(MAKECMDGOALS))
    87 -include $(DEPS)
    88 else
    89 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
    90 -include $(DEPS)
    91 endif
    92 endif

mercurial