1 ## Makefile.in for ICU - tools/gencfu
2 ## Copyright (c) 2009-2012 International Business Machines Corporation and
3 ## others. All Rights Reserved.
5 ## Source directory information
7 top_srcdir = @top_srcdir@
11 include $(top_builddir)/icudefs.mk
13 ## Build directory information
16 TARGET_STUB_NAME = gencfu
20 MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
23 ## Extra files to remove for 'make clean'
24 CLEANFILES = *~ $(DEPS) $(MAN_FILES)
27 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
29 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil
30 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
34 DEPS = $(OBJECTS:.o=.d)
36 ## List of phony targets
37 .PHONY : all all-local install install-local clean clean-local \
38 distclean distclean-local dist dist-local check check-local install-man
43 ## List of standard targets
45 install: install-local
47 distclean : distclean-local
49 check: all check-local
51 all-local: $(TARGET) $(MAN_FILES)
53 install-local: all-local install-man
54 $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
55 $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
57 install-man: $(MAN_FILES)
58 $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
59 $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
64 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
65 $(RMV) $(TARGET) $(OBJECTS)
67 distclean-local: clean-local
70 check-local: all-local
72 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
74 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
76 $(TARGET) : $(OBJECTS)
77 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
81 %.$(SECTION): $(srcdir)/%.$(SECTION).in
83 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
86 ifeq (,$(MAKECMDGOALS))
89 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)