1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/test/thaitest/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,80 @@ 1.4 +## Makefile.in for ICU - test/thaitest 1.5 +## Copyright (c) 2003-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 +## Build directory information 1.17 +subdir = test/thaitest 1.18 + 1.19 +## Extra files to remove for 'make clean' 1.20 +CLEANFILES = *~ $(DEPS) 1.21 + 1.22 +## Target information 1.23 +TARGET = thaitest$(EXEEXT) 1.24 + 1.25 +DEFS = @DEFS@ 1.26 +CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n 1.27 +#CFLAGS += @CFLAGS@ 1.28 +#CXXFLAGS = @CXXFLAGS@ 1.29 + 1.30 +LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) 1.31 + 1.32 +OBJECTS = thaitest.o 1.33 + 1.34 +DEPS = $(OBJECTS:.o=.d) 1.35 + 1.36 +## List of phony targets 1.37 +.PHONY : all all-local install install-local clean clean-local \ 1.38 +distclean distclean-local dist dist-local check check-local 1.39 + 1.40 +## Clear suffix list 1.41 +.SUFFIXES : 1.42 + 1.43 +## List of standard targets 1.44 +all: all-local 1.45 +install: install-local 1.46 +clean: clean-local 1.47 +distclean : distclean-local 1.48 +dist: dist-local 1.49 +check: all check-local 1.50 + 1.51 +all-local: $(TARGET) 1.52 + 1.53 +install-local: 1.54 + 1.55 +dist-local: 1.56 + 1.57 +clean-local: 1.58 + test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 1.59 + $(RMV) $(OBJECTS) $(TARGET) 1.60 + 1.61 +distclean-local: clean-local 1.62 + $(RMV) Makefile 1.63 + 1.64 +check-local: all-local 1.65 + $(INVOKE) ./$(TARGET) 1.66 + 1.67 +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 1.68 + cd $(top_builddir) \ 1.69 + && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 1.70 + 1.71 +$(TARGET) : $(OBJECTS) 1.72 + $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) 1.73 + $(POST_BUILD_STEP) 1.74 + 1.75 +ifeq (,$(MAKECMDGOALS)) 1.76 +-include $(DEPS) 1.77 +else 1.78 +ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 1.79 +ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) 1.80 +-include $(DEPS) 1.81 +endif 1.82 +endif 1.83 +endif