1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/test/threadtest/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,90 @@ 1.4 +## Makefile.in for ICU - test/threadtest 1.5 +## Copyright (c) 2001-2011, International Business Machines Corporation and 1.6 +## others. All Rights Reserved. 1.7 + 1.8 +## Source directory information 1.9 +srcdir = @srcdir@ 1.10 +top_srcdir = @top_srcdir@ 1.11 + 1.12 +top_builddir = ../.. 1.13 + 1.14 +include $(top_builddir)/icudefs.mk 1.15 + 1.16 +## Platform-specific setup 1.17 +include @platform_make_fragment@ 1.18 + 1.19 +## Build directory information 1.20 +subdir = test/threadtest 1.21 + 1.22 +## Extra files to remove for 'make clean' 1.23 +CLEANFILES = *~ $(DEPS) 1.24 + 1.25 +## Target information 1.26 +TARGET = threadtest 1.27 + 1.28 +DEFS = @DEFS@ 1.29 +CPPFLAGS = @CPPFLAGS@ -I$(top_srcdir)/common -I$(top_srcdir)/i18n 1.30 +CFLAGS = @CFLAGS@ 1.31 +CXXFLAGS = @CXXFLAGS@ 1.32 +ENABLE_RPATH = @ENABLE_RPATH@ 1.33 +ifeq ($(ENABLE_RPATH),YES) 1.34 +RPATHLDFLAGS = $(LD_RPATH)$(LD_RPATH_PRE)$(libdir) 1.35 +endif 1.36 +LDFLAGS = @LDFLAGS@ $(RPATHLDFLAGS) 1.37 +LIBS = $(LIBICUI18N) $(LIBICUUC) @LIBS@ @LIB_M@ 1.38 + 1.39 +OBJECTS = threadtest.o stringtest.o converttest.o 1.40 + 1.41 +DEPS = $(OBJECTS:.o=.d) 1.42 + 1.43 +## List of phony targets 1.44 +.PHONY : all all-local install install-local clean clean-local \ 1.45 +distclean distclean-local dist dist-local check check-local 1.46 + 1.47 +## Clear suffix list 1.48 +.SUFFIXES : 1.49 + 1.50 +## List of standard targets 1.51 +all: all-local 1.52 +install: install-local 1.53 +clean: clean-local 1.54 +distclean : distclean-local 1.55 +dist: dist-local 1.56 +check: all check-local 1.57 + 1.58 +all-local: $(TARGET) 1.59 + 1.60 +install-local: 1.61 + 1.62 +dist-local: 1.63 + 1.64 +clean-local: 1.65 + test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 1.66 + $(RMV) $(OBJECTS) $(TARGET) 1.67 + 1.68 +distclean-local: clean-local 1.69 + $(RMV) Makefile 1.70 + 1.71 +check-local: all-local 1.72 + 1.73 +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 1.74 + cd $(top_builddir) \ 1.75 + && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 1.76 + 1.77 +$(TARGET) : $(OBJECTS) 1.78 + $(LINK.cc) -o $@ $^ $(LIBS) 1.79 + $(POST_BUILD_STEP) 1.80 + 1.81 +invoke: 1.82 + ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) $(INVOCATION) 1.83 + 1.84 +ifeq (,$(MAKECMDGOALS)) 1.85 +-include $(DEPS) 1.86 +else 1.87 +ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 1.88 +ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) 1.89 +-include $(DEPS) 1.90 +endif 1.91 +endif 1.92 +endif 1.93 +