Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
1 ## Makefile.in for ICU - tools/icuswap
2 ## Copyright (c) 1999-2011, International Business Machines Corporation and
3 ## others. All Rights Reserved.
4 ## Steven R. Loomis
6 ## Source directory information
7 srcdir = @srcdir@
8 top_srcdir = @top_srcdir@
10 top_builddir = ../..
12 include $(top_builddir)/icudefs.mk
14 ## Build directory information
15 subdir = tools/icuswap
17 TARGET_STUB_NAME = icuswap
19 SECTION = 8
21 #MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
23 ## Extra files to remove for 'make clean'
24 CLEANFILES = *~ $(DEPS) $(MAN_FILES)
26 ## Target information
27 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
29 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
30 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
32 OBJECTS = icuswap.o
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
40 ## Clear suffix list
41 .SUFFIXES :
43 ## List of standard targets
44 all: all-local
45 install: install-local
46 clean: clean-local
47 distclean : distclean-local
48 dist: dist-local
49 check: all check-local
51 all-local: $(TARGET) $(MAN_FILES)
53 install-local: all-local install-man
54 $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
55 $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)
57 install-man: $(MAN_FILES)
58 # $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
59 # $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
62 dist-local:
64 clean-local:
65 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
66 $(RMV) $(TARGET) $(OBJECTS)
68 distclean-local: clean-local
69 $(RMV) Makefile
71 check-local: all-local
73 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
74 cd $(top_builddir) \
75 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
77 $(TARGET) : $(OBJECTS)
78 echo Note: icuswap is obsolete - use icupkg instead.
79 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
80 $(POST_BUILD_STEP)
83 %.$(SECTION): $(srcdir)/%.$(SECTION).in
84 cd $(top_builddir) \
85 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
88 ifeq (,$(MAKECMDGOALS))
89 -include $(DEPS)
90 else
91 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
92 -include $(DEPS)
93 endif
94 endif