1## Makefile.in for ICU - tools/icuswap 2## Copyright (C) 2016 and later: Unicode, Inc. and others. 3## License & terms of use: http://www.unicode.org/copyright.html 4## Copyright (c) 1999-2011, International Business Machines Corporation and 5## others. All Rights Reserved. 6## Steven R. Loomis 7 8## Source directory information 9srcdir = @srcdir@ 10top_srcdir = @top_srcdir@ 11 12top_builddir = ../.. 13 14include $(top_builddir)/icudefs.mk 15 16## Build directory information 17subdir = tools/icuswap 18 19TARGET_STUB_NAME = icuswap 20 21SECTION = 8 22 23#MAN_FILES = $(TARGET_STUB_NAME).$(SECTION) 24 25## Extra files to remove for 'make clean' 26CLEANFILES = *~ $(DEPS) $(MAN_FILES) 27 28## Target information 29TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) 30 31CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil 32LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) 33 34OBJECTS = icuswap.o 35 36DEPS = $(OBJECTS:.o=.d) 37 38## List of phony targets 39.PHONY : all all-local install install-local clean clean-local \ 40distclean distclean-local dist dist-local check check-local install-man 41 42## Clear suffix list 43.SUFFIXES : 44 45## List of standard targets 46all: all-local 47install: install-local 48clean: clean-local 49distclean : distclean-local 50dist: dist-local 51check: all check-local 52 53all-local: $(TARGET) $(MAN_FILES) 54 55install-local: all-local install-man 56 $(MKINSTALLDIRS) $(DESTDIR)$(sbindir) 57 $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir) 58 59install-man: $(MAN_FILES) 60# $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION) 61# $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION) 62 63 64dist-local: 65 66clean-local: 67 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 68 $(RMV) $(TARGET) $(OBJECTS) 69 70distclean-local: clean-local 71 $(RMV) Makefile 72 73check-local: all-local 74 75Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 76 cd $(top_builddir) \ 77 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 78 79$(TARGET) : $(OBJECTS) 80 echo Note: icuswap is obsolete - use icupkg instead. 81 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) 82 $(POST_BUILD_STEP) 83 84 85%.$(SECTION): $(srcdir)/%.$(SECTION).in 86 cd $(top_builddir) \ 87 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 88 89 90ifeq (,$(MAKECMDGOALS)) 91-include $(DEPS) 92else 93ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 94-include $(DEPS) 95endif 96endif 97 98