12e5b6d6dSopenharmony_ci## Makefile.in for ICU - test/perf/unisetperf 22e5b6d6dSopenharmony_ci## Copyright (C) 2016 and later: Unicode, Inc. and others. 32e5b6d6dSopenharmony_ci## License & terms of use: http://www.unicode.org/copyright.html 42e5b6d6dSopenharmony_ci## 52e5b6d6dSopenharmony_ci## Copyright (c) 2001-2011, International Business Machines Corporation and 62e5b6d6dSopenharmony_ci## others. All Rights Reserved. 72e5b6d6dSopenharmony_ci 82e5b6d6dSopenharmony_ci## Source directory information 92e5b6d6dSopenharmony_cisrcdir = @srcdir@ 102e5b6d6dSopenharmony_citop_srcdir = @top_srcdir@ 112e5b6d6dSopenharmony_ci 122e5b6d6dSopenharmony_citop_builddir = ../../.. 132e5b6d6dSopenharmony_ci 142e5b6d6dSopenharmony_ciinclude $(top_builddir)/icudefs.mk 152e5b6d6dSopenharmony_ci 162e5b6d6dSopenharmony_ci## Build directory information 172e5b6d6dSopenharmony_cisubdir = test/perf/unisetperf 182e5b6d6dSopenharmony_ci 192e5b6d6dSopenharmony_ci## Extra files to remove for 'make clean' 202e5b6d6dSopenharmony_ciCLEANFILES = *~ $(DEPS) 212e5b6d6dSopenharmony_ci 222e5b6d6dSopenharmony_ci## Target information 232e5b6d6dSopenharmony_ciTARGET = unisetperf 242e5b6d6dSopenharmony_ci 252e5b6d6dSopenharmony_ciCPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw 262e5b6d6dSopenharmony_ciLIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M) 272e5b6d6dSopenharmony_ci 282e5b6d6dSopenharmony_ciOBJECTS = unisetperf.o 292e5b6d6dSopenharmony_ci 302e5b6d6dSopenharmony_ciDEPS = $(OBJECTS:.o=.d) 312e5b6d6dSopenharmony_ci 322e5b6d6dSopenharmony_ci## List of phony targets 332e5b6d6dSopenharmony_ci.PHONY : all all-local install install-local clean clean-local \ 342e5b6d6dSopenharmony_cidistclean distclean-local dist dist-local check check-local 352e5b6d6dSopenharmony_ci 362e5b6d6dSopenharmony_ci## Clear suffix list 372e5b6d6dSopenharmony_ci.SUFFIXES : 382e5b6d6dSopenharmony_ci 392e5b6d6dSopenharmony_ci## List of standard targets 402e5b6d6dSopenharmony_ciall: all-local 412e5b6d6dSopenharmony_ciinstall: install-local 422e5b6d6dSopenharmony_ciclean: clean-local 432e5b6d6dSopenharmony_cidistclean : distclean-local 442e5b6d6dSopenharmony_cidist: dist-local 452e5b6d6dSopenharmony_cicheck: all check-local 462e5b6d6dSopenharmony_ci 472e5b6d6dSopenharmony_ciall-local: $(TARGET) 482e5b6d6dSopenharmony_ci 492e5b6d6dSopenharmony_ciinstall-local: 502e5b6d6dSopenharmony_ci 512e5b6d6dSopenharmony_cidist-local: 522e5b6d6dSopenharmony_ci 532e5b6d6dSopenharmony_ciclean-local: 542e5b6d6dSopenharmony_ci test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 552e5b6d6dSopenharmony_ci $(RMV) $(OBJECTS) $(TARGET) 562e5b6d6dSopenharmony_ci 572e5b6d6dSopenharmony_cidistclean-local: clean-local 582e5b6d6dSopenharmony_ci $(RMV) Makefile 592e5b6d6dSopenharmony_ci 602e5b6d6dSopenharmony_cicheck-local: all-local 612e5b6d6dSopenharmony_ci 622e5b6d6dSopenharmony_ciMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 632e5b6d6dSopenharmony_ci cd $(top_builddir) \ 642e5b6d6dSopenharmony_ci && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 652e5b6d6dSopenharmony_ci 662e5b6d6dSopenharmony_ci$(TARGET) : $(OBJECTS) 672e5b6d6dSopenharmony_ci $(LINK.cc) -o $@ $^ $(LIBS) 682e5b6d6dSopenharmony_ci 692e5b6d6dSopenharmony_ciinvoke: 702e5b6d6dSopenharmony_ci ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) $(INVOCATION) 712e5b6d6dSopenharmony_ci 722e5b6d6dSopenharmony_ciifeq (,$(MAKECMDGOALS)) 732e5b6d6dSopenharmony_ci-include $(DEPS) 742e5b6d6dSopenharmony_cielse 752e5b6d6dSopenharmony_ciifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 762e5b6d6dSopenharmony_ciifneq ($(patsubst %install,,$(MAKECMDGOALS)),) 772e5b6d6dSopenharmony_ci-include $(DEPS) 782e5b6d6dSopenharmony_ciendif 792e5b6d6dSopenharmony_ciendif 802e5b6d6dSopenharmony_ciendif 812e5b6d6dSopenharmony_ci 82