intl/icu/source/tools/gendict/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/gendict
     2 ## Copyright (c) 2002-2012 International Business Machines Corporation and
     3 ## others. All Rights Reserved.
     5 ## Source directory information
     6 srcdir = @srcdir@
     7 top_srcdir = @top_srcdir@
     9 top_builddir = ../..
    11 include $(top_builddir)/icudefs.mk
    13 ## Build directory information
    14 subdir = tools/gendict
    16 TARGET_STUB_NAME = gendict
    18 SECTION = 1
    20 MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
    23 ## Extra files to remove for 'make clean'
    24 CLEANFILES = *~ $(DEPS) $(MAN_FILES)
    26 ## Target information
    27 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
    29 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
    30 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
    32 OBJECTS = gendict.o
    34 DEPS = $(OBJECTS:.o=.d)
    36 ## List of phony targets
    37 .PHONY : all all-local install install-local clean clean-local	\
    38 distclean distclean-local dist dist-local check check-local install-man
    40 ## Clear suffix list
    41 .SUFFIXES :
    43 ## List of standard targets
    44 all: all-local
    45 install: install-local
    46 clean: clean-local
    47 distclean : distclean-local
    48 dist: dist-local
    49 check: all check-local
    51 all-local: $(TARGET) $(MAN_FILES)
    53 install-local: all-local install-man
    54 	$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
    55 	$(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
    57 install-man: $(MAN_FILES)
    58 	$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
    59 	$(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
    61 dist-local:
    63 clean-local:
    64 	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
    65 	$(RMV) $(TARGET) $(OBJECTS)
    67 distclean-local: clean-local
    68 	$(RMV) Makefile
    70 check-local: all-local
    72 Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
    73 	cd $(top_builddir) \
    74 	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
    76 $(TARGET) : $(OBJECTS)
    77 	$(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
    78 	$(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