12e5b6d6dSopenharmony_ci## Makefile.in for ICU - tools/genprops 22e5b6d6dSopenharmony_ci# 32e5b6d6dSopenharmony_ci# Copyright (C) 2017 and later: Unicode, Inc. and others. 42e5b6d6dSopenharmony_ci# License & terms of use: http://www.unicode.org/copyright.html 52e5b6d6dSopenharmony_ci# 62e5b6d6dSopenharmony_ci## Copyright (c) 1999-2005, International Business Machines Corporation and 72e5b6d6dSopenharmony_ci## others. All Rights Reserved. 82e5b6d6dSopenharmony_ci## Steven R. Loomis 92e5b6d6dSopenharmony_ci 102e5b6d6dSopenharmony_ci## Source directory information 112e5b6d6dSopenharmony_cisrcdir = @srcdir@ 122e5b6d6dSopenharmony_citop_srcdir = @top_srcdir@ 132e5b6d6dSopenharmony_ci 142e5b6d6dSopenharmony_citop_builddir = ../.. 152e5b6d6dSopenharmony_ci 162e5b6d6dSopenharmony_ciinclude $(top_builddir)/icudefs.mk 172e5b6d6dSopenharmony_ci 182e5b6d6dSopenharmony_ci## Build directory information 192e5b6d6dSopenharmony_cisubdir = tools/genprops 202e5b6d6dSopenharmony_ci 212e5b6d6dSopenharmony_ciTARGET_STUB_NAME = genprops 222e5b6d6dSopenharmony_ci 232e5b6d6dSopenharmony_ciSECTION = 8 242e5b6d6dSopenharmony_ci 252e5b6d6dSopenharmony_ci#MAN_FILES = $(TARGET_STUB_NAME).$(SECTION) 262e5b6d6dSopenharmony_ci 272e5b6d6dSopenharmony_ci 282e5b6d6dSopenharmony_ci## Extra files to remove for 'make clean' 292e5b6d6dSopenharmony_ciCLEANFILES = *~ $(DEPS) $(MAN_FILES) 302e5b6d6dSopenharmony_ci 312e5b6d6dSopenharmony_ci## Target information 322e5b6d6dSopenharmony_ciTARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) 332e5b6d6dSopenharmony_ci 342e5b6d6dSopenharmony_ciifneq ($(top_builddir),$(top_srcdir)) 352e5b6d6dSopenharmony_ciCPPFLAGS += -I$(top_builddir)/common 362e5b6d6dSopenharmony_ciendif 372e5b6d6dSopenharmony_ciCPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil 382e5b6d6dSopenharmony_ciLIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) 392e5b6d6dSopenharmony_ci 402e5b6d6dSopenharmony_ciOBJECTS = genprops.o props2.o store.o 412e5b6d6dSopenharmony_ci 422e5b6d6dSopenharmony_ciDEPS = $(OBJECTS:.o=.d) 432e5b6d6dSopenharmony_ci 442e5b6d6dSopenharmony_ci## List of phony targets 452e5b6d6dSopenharmony_ci.PHONY : all all-local install install-local clean clean-local \ 462e5b6d6dSopenharmony_cidistclean distclean-local dist dist-local check check-local install-man 472e5b6d6dSopenharmony_ci 482e5b6d6dSopenharmony_ci## Clear suffix list 492e5b6d6dSopenharmony_ci.SUFFIXES : 502e5b6d6dSopenharmony_ci 512e5b6d6dSopenharmony_ci## List of standard targets 522e5b6d6dSopenharmony_ciall: all-local 532e5b6d6dSopenharmony_ciinstall: install-local 542e5b6d6dSopenharmony_ciclean: clean-local 552e5b6d6dSopenharmony_cidistclean : distclean-local 562e5b6d6dSopenharmony_cidist: dist-local 572e5b6d6dSopenharmony_cicheck: all check-local 582e5b6d6dSopenharmony_ci 592e5b6d6dSopenharmony_ciall-local: $(TARGET) $(MAN_FILES) 602e5b6d6dSopenharmony_ci 612e5b6d6dSopenharmony_ciinstall-local: all-local install-man 622e5b6d6dSopenharmony_ci# $(MKINSTALLDIRS) $(DESTDIR)$(sbindir) 632e5b6d6dSopenharmony_ci# $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir) 642e5b6d6dSopenharmony_ci 652e5b6d6dSopenharmony_ciinstall-man: $(MAN_FILES) 662e5b6d6dSopenharmony_ci# $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION) 672e5b6d6dSopenharmony_ci# $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION) 682e5b6d6dSopenharmony_ci 692e5b6d6dSopenharmony_cidist-local: 702e5b6d6dSopenharmony_ci 712e5b6d6dSopenharmony_ciclean-local: 722e5b6d6dSopenharmony_ci test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 732e5b6d6dSopenharmony_ci $(RMV) $(TARGET) $(OBJECTS) 742e5b6d6dSopenharmony_ci 752e5b6d6dSopenharmony_cidistclean-local: clean-local 762e5b6d6dSopenharmony_ci $(RMV) Makefile 772e5b6d6dSopenharmony_ci 782e5b6d6dSopenharmony_cicheck-local: all-local 792e5b6d6dSopenharmony_ci 802e5b6d6dSopenharmony_ciMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 812e5b6d6dSopenharmony_ci cd $(top_builddir) \ 822e5b6d6dSopenharmony_ci && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 832e5b6d6dSopenharmony_ci 842e5b6d6dSopenharmony_ci$(TARGET) : $(OBJECTS) 852e5b6d6dSopenharmony_ci $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) 862e5b6d6dSopenharmony_ci $(POST_BUILD_STEP) 872e5b6d6dSopenharmony_ci 882e5b6d6dSopenharmony_ci 892e5b6d6dSopenharmony_ci%.$(SECTION): $(srcdir)/%.$(SECTION).in 902e5b6d6dSopenharmony_ci cd $(top_builddir) \ 912e5b6d6dSopenharmony_ci && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 922e5b6d6dSopenharmony_ci 932e5b6d6dSopenharmony_ci 942e5b6d6dSopenharmony_ciifeq (,$(MAKECMDGOALS)) 952e5b6d6dSopenharmony_ci-include $(DEPS) 962e5b6d6dSopenharmony_cielse 972e5b6d6dSopenharmony_ciifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 982e5b6d6dSopenharmony_ci-include $(DEPS) 992e5b6d6dSopenharmony_ciendif 1002e5b6d6dSopenharmony_ciendif 1012e5b6d6dSopenharmony_ci 102