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