sl@0: ## Makefile.in for ICU - test/letest sl@0: ## Copyright (c) 2001-2003, International Business Machines Corporation and sl@0: ## others. All Rights Reserved. sl@0: sl@0: ## Source directory information sl@0: srcdir = @srcdir@ sl@0: top_srcdir = @top_srcdir@ sl@0: sl@0: top_builddir = ../.. sl@0: sl@0: include $(top_builddir)/icudefs.mk sl@0: sl@0: ## Platform-specific setup sl@0: include @platform_make_fragment@ sl@0: sl@0: ## Build directory information sl@0: subdir = test/letest sl@0: sl@0: ## Extra files to remove for 'make clean' sl@0: CLEANFILES = *~ $(DEPS) sl@0: sl@0: ## Target information sl@0: TESTTARGET = letest sl@0: GENTARGET = gendata sl@0: sl@0: CPPFLAGS += -DLE_USE_CMEMORY -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/layout -I$(top_srcdir) sl@0: LIBS = $(LIBICULE) $(LIBICUUC) @LIBS@ @LIB_M@ sl@0: sl@0: COMMONOBJECTS = cmaps.o FontTableCache.o PortableFontInstance.o sl@0: TESTOBJECTS = testdata.o letest.o sl@0: GENOBJECTS = gendata.o sl@0: sl@0: OBJECTS = $(COMMONOBJECTS) $(TESTOBJECTS) $(GENOBJECTS) sl@0: sl@0: DEPS = $(OBJECTS:.o=.d) sl@0: sl@0: ## List of phony targets sl@0: .PHONY : all all-local install install-local clean clean-local \ sl@0: distclean distclean-local dist dist-local check check-local sl@0: sl@0: ## Clear suffix list sl@0: .SUFFIXES : sl@0: sl@0: ## List of standard targets sl@0: all: all-local sl@0: install: install-local sl@0: clean: clean-local sl@0: distclean : distclean-local sl@0: dist: dist-local sl@0: check: all check-local sl@0: sl@0: all-local: $(TESTTARGET) sl@0: sl@0: install-local: sl@0: sl@0: dist-local: sl@0: sl@0: clean-local: sl@0: test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) sl@0: $(RMV) $(OBJECTS) $(TARGET) sl@0: sl@0: distclean-local: clean-local sl@0: $(RMV) Makefile sl@0: sl@0: check-local: all-local sl@0: $(INVOKE) ./$(TESTTARGET) sl@0: sl@0: Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status sl@0: cd $(top_builddir) \ sl@0: && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status sl@0: sl@0: $(TESTTARGET) : $(COMMONOBJECTS) $(TESTOBJECTS) sl@0: $(LINK.cc) -o $@ $^ $(LIBS) sl@0: sl@0: $(GENTARGET) : $(COMMONOBJECTS) $(GENOBJECTS) sl@0: $(LINK.cc) -o $@ $^ $(LIBS) sl@0: sl@0: invoke: sl@0: ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) $(INVOCATION) sl@0: sl@0: ifeq (,$(MAKECMDGOALS)) sl@0: -include $(DEPS) sl@0: else sl@0: ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) sl@0: ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) sl@0: -include $(DEPS) sl@0: endif sl@0: endif sl@0: endif