1 ## Makefile.in for ICU - tools/gennorm2
2 ## Copyright (c) 2009-2011, International Business Machines Corporation and
3 ## others. All Rights Reserved.
4 ## Steven R. Loomis/Markus W. Scherer
6 ## Source directory information
8 top_srcdir = @top_srcdir@
12 include $(top_builddir)/icudefs.mk
14 ## Build directory information
15 subdir = tools/gennorm2
17 TARGET_STUB_NAME = gennorm2
19 ## Extra files to remove for 'make clean'
20 CLEANFILES = *~ $(DEPS)
23 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
25 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
26 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
28 OBJECTS = gennorm2.o n2builder.o
30 DEPS = $(OBJECTS:.o=.d)
32 ## List of phony targets
33 .PHONY : all all-local install install-local clean clean-local \
34 distclean distclean-local dist dist-local check check-local install-man
39 ## List of standard targets
41 install: install-local
43 distclean : distclean-local
45 check: all check-local
49 install-local: all-local
50 $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
51 $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)
56 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
57 $(RMV) $(TARGET) $(OBJECTS)
59 distclean-local: clean-local
62 check-local: all-local
64 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
66 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
68 $(TARGET) : $(OBJECTS)
69 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
73 ifeq (,$(MAKECMDGOALS))
76 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)