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