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