Update contrib.
1 ## Makefile.in for ICU - test/letest
2 ## Copyright (c) 2001-2003, International Business Machines Corporation and
3 ## others. All Rights Reserved.
5 ## Source directory information
7 top_srcdir = @top_srcdir@
11 include $(top_builddir)/icudefs.mk
13 ## Platform-specific setup
14 include @platform_make_fragment@
16 ## Build directory information
19 ## Extra files to remove for 'make clean'
20 CLEANFILES = *~ $(DEPS)
26 CPPFLAGS += -DLE_USE_CMEMORY -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/layout -I$(top_srcdir)
27 LIBS = $(LIBICULE) $(LIBICUUC) @LIBS@ @LIB_M@
29 COMMONOBJECTS = cmaps.o FontTableCache.o PortableFontInstance.o
30 TESTOBJECTS = testdata.o letest.o
31 GENOBJECTS = gendata.o
33 OBJECTS = $(COMMONOBJECTS) $(TESTOBJECTS) $(GENOBJECTS)
35 DEPS = $(OBJECTS:.o=.d)
37 ## List of phony targets
38 .PHONY : all all-local install install-local clean clean-local \
39 distclean distclean-local dist dist-local check check-local
44 ## List of standard targets
46 install: install-local
48 distclean : distclean-local
50 check: all check-local
52 all-local: $(TESTTARGET)
59 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
60 $(RMV) $(OBJECTS) $(TARGET)
62 distclean-local: clean-local
65 check-local: all-local
66 $(INVOKE) ./$(TESTTARGET)
68 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
70 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
72 $(TESTTARGET) : $(COMMONOBJECTS) $(TESTOBJECTS)
73 $(LINK.cc) -o $@ $^ $(LIBS)
75 $(GENTARGET) : $(COMMONOBJECTS) $(GENOBJECTS)
76 $(LINK.cc) -o $@ $^ $(LIBS)
79 ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) $(INVOCATION)
81 ifeq (,$(MAKECMDGOALS))
84 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
85 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)