intl/icu/source/test/thaitest/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 - test/thaitest
     2 ## Copyright (c) 2003-2011, 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 = test/thaitest
    16 ## Extra files to remove for 'make clean'
    17 CLEANFILES = *~ $(DEPS)
    19 ## Target information
    20 TARGET = thaitest$(EXEEXT)
    22 DEFS = @DEFS@
    23 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n 
    24 #CFLAGS += @CFLAGS@
    25 #CXXFLAGS = @CXXFLAGS@
    27 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
    29 OBJECTS = thaitest.o
    31 DEPS = $(OBJECTS:.o=.d)
    33 ## List of phony targets
    34 .PHONY : all all-local install install-local clean clean-local	\
    35 distclean distclean-local dist dist-local check check-local
    37 ## Clear suffix list
    38 .SUFFIXES :
    40 ## List of standard targets
    41 all: all-local
    42 install: install-local
    43 clean: clean-local
    44 distclean : distclean-local
    45 dist: dist-local
    46 check: all check-local
    48 all-local: $(TARGET)
    50 install-local:
    52 dist-local:
    54 clean-local:
    55 	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
    56 	$(RMV) $(OBJECTS) $(TARGET)
    58 distclean-local: clean-local
    59 	$(RMV) Makefile
    61 check-local: all-local
    62 	$(INVOKE) ./$(TARGET)
    64 Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
    65 	cd $(top_builddir) \
    66 	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
    68 $(TARGET) : $(OBJECTS)
    69 	$(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
    70 	$(POST_BUILD_STEP)
    72 ifeq (,$(MAKECMDGOALS))
    73 -include $(DEPS)
    74 else
    75 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
    76 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
    77 -include $(DEPS)
    78 endif
    79 endif
    80 endif

mercurial