1 ## Makefile.in for ICU - tools/genbrk
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-2011 International Business Machines Corporation and
5 ## others. All Rights Reserved.
7 ## Source directory information
9 top_srcdir = @top_srcdir@
13 include $(top_builddir)/icudefs.mk
15 ## Build directory information
18 TARGET_STUB_NAME = genbrk
22 MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
25 ## Extra files to remove for 'make clean'
26 CLEANFILES = *~ $(DEPS) $(MAN_FILES)
29 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
31 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
32 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
36 DEPS = $(OBJECTS:.o=.d)
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
45 ## List of standard targets
47 install: install-local
49 distclean : distclean-local
51 check: all check-local
53 all-local: $(TARGET) $(MAN_FILES)
55 install-local: all-local install-man
56 $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
57 $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
59 install-man: $(MAN_FILES)
60 $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
61 $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
66 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
67 $(RMV) $(TARGET) $(OBJECTS)
69 distclean-local: clean-local
72 check-local: all-local
74 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
76 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
78 $(TARGET) : $(OBJECTS)
79 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
83 %.$(SECTION): $(srcdir)/%.$(SECTION).in
85 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
88 ifeq (,$(MAKECMDGOALS))
91 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)