1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/fontservices/textshaperplugin/test/letest/Makefile.in Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,89 @@
1.4 +## Makefile.in for ICU - test/letest
1.5 +## Copyright (c) 2001-2003, 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/letest
1.21 +
1.22 +## Extra files to remove for 'make clean'
1.23 +CLEANFILES = *~ $(DEPS)
1.24 +
1.25 +## Target information
1.26 +TESTTARGET = letest
1.27 +GENTARGET = gendata
1.28 +
1.29 +CPPFLAGS += -DLE_USE_CMEMORY -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/layout -I$(top_srcdir)
1.30 +LIBS = $(LIBICULE) $(LIBICUUC) @LIBS@ @LIB_M@
1.31 +
1.32 +COMMONOBJECTS = cmaps.o FontTableCache.o PortableFontInstance.o
1.33 +TESTOBJECTS = testdata.o letest.o
1.34 +GENOBJECTS = gendata.o
1.35 +
1.36 +OBJECTS = $(COMMONOBJECTS) $(TESTOBJECTS) $(GENOBJECTS)
1.37 +
1.38 +DEPS = $(OBJECTS:.o=.d)
1.39 +
1.40 +## List of phony targets
1.41 +.PHONY : all all-local install install-local clean clean-local \
1.42 +distclean distclean-local dist dist-local check check-local
1.43 +
1.44 +## Clear suffix list
1.45 +.SUFFIXES :
1.46 +
1.47 +## List of standard targets
1.48 +all: all-local
1.49 +install: install-local
1.50 +clean: clean-local
1.51 +distclean : distclean-local
1.52 +dist: dist-local
1.53 +check: all check-local
1.54 +
1.55 +all-local: $(TESTTARGET)
1.56 +
1.57 +install-local:
1.58 +
1.59 +dist-local:
1.60 +
1.61 +clean-local:
1.62 + test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
1.63 + $(RMV) $(OBJECTS) $(TARGET)
1.64 +
1.65 +distclean-local: clean-local
1.66 + $(RMV) Makefile
1.67 +
1.68 +check-local: all-local
1.69 + $(INVOKE) ./$(TESTTARGET)
1.70 +
1.71 +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
1.72 + cd $(top_builddir) \
1.73 + && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
1.74 +
1.75 +$(TESTTARGET) : $(COMMONOBJECTS) $(TESTOBJECTS)
1.76 + $(LINK.cc) -o $@ $^ $(LIBS)
1.77 +
1.78 +$(GENTARGET) : $(COMMONOBJECTS) $(GENOBJECTS)
1.79 + $(LINK.cc) -o $@ $^ $(LIBS)
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