intl/icu/source/samples/date/Makefile.in

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

     1 ## Makefile.in for ICU - samples/date
     2 ## Copyright (c) 1999-2012, International Business Machines Corporation and
     3 ## others. All Rights Reserved.
     5 ## 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 = samples/date
    17 ## Extra files to remove for 'make clean'
    18 CLEANFILES = *~ $(DEPS)
    20 ## Target information
    21 TARGET = icudate$(EXEEXT)
    23 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n
    24 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
    26 OBJECTS = uprint.o date.o
    28 DEPS = $(OBJECTS:.o=.d)
    30 ## List of phony targets
    31 .PHONY : all all-local install install-local clean clean-local \
    32 distclean distclean-local dist dist-local check check-local
    34 ## Clear suffix list
    35 .SUFFIXES :
    37 ## List of standard targets
    38 all: all-local
    39 install: install-local
    40 clean: clean-local
    41 distclean : distclean-local
    42 dist: dist-local
    43 check: all check-local
    45 all-local: $(TARGET)
    47 install-local: all-local
    49 dist-local:
    51 clean-local:
    52 	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
    53 	$(RMV) $(OBJECTS) $(TARGET)
    55 distclean-local: clean-local
    56 	$(RMV) Makefile
    58 check-local:
    59 	-$(INVOKE) ./$(TARGET) $(ICUDATE_OPTS)
    61 Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
    62 	cd $(top_builddir) \
    63 	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
    65 $(TARGET) : $(OBJECTS)
    66 	$(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
    67 	$(POST_BUILD_STEP)
    69 ifeq (,$(MAKECMDGOALS))
    70 -include $(DEPS)
    71 else
    72 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
    73 -include $(DEPS)
    74 endif
    75 endif

mercurial