]> git.saurik.com Git - apple/icu.git/blame - icuSources/tools/icuswap/Makefile.in
ICU-400.37.tar.gz
[apple/icu.git] / icuSources / tools / icuswap / Makefile.in
CommitLineData
374ca955 1## Makefile.in for ICU - tools/icuswap
73c04bcf 2## Copyright (c) 1999-2006, International Business Machines Corporation and
b75a7d8f 3## others. All Rights Reserved.
374ca955 4## Steven R. Loomis
b75a7d8f
A
5
6## Source directory information
7srcdir = @srcdir@
8top_srcdir = @top_srcdir@
9
10top_builddir = ../..
11
12include $(top_builddir)/icudefs.mk
13
374ca955
A
14## Build directory information
15subdir = tools/icuswap
16
374ca955 17TARGET_STUB_NAME = icuswap
b75a7d8f 18
73c04bcf 19SECTION = 8
b75a7d8f 20
73c04bcf 21#MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
b75a7d8f
A
22
23## Extra files to remove for 'make clean'
73c04bcf 24CLEANFILES = *~ $(DEPS) $(MAN_FILES)
b75a7d8f
A
25
26## Target information
374ca955 27TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
b75a7d8f 28
73c04bcf
A
29ifneq ($(top_builddir),$(top_srcdir))
30CPPFLAGS += -I$(top_builddir)/common
31endif
32CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
33LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
b75a7d8f 34
374ca955 35OBJECTS = icuswap.o
b75a7d8f
A
36
37DEPS = $(OBJECTS:.o=.d)
38
39## List of phony targets
374ca955 40.PHONY : all all-local install install-local clean clean-local \
73c04bcf 41distclean distclean-local dist dist-local check check-local install-man
b75a7d8f
A
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
73c04bcf 54all-local: $(TARGET) $(MAN_FILES)
b75a7d8f
A
55
56install-local: all-local install-man
57 $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
374ca955 58 $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)
b75a7d8f 59
73c04bcf
A
60install-man: $(MAN_FILES)
61# $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
62# $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
63
64
b75a7d8f
A
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)
73c04bcf 81 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
46f4442e 82 $(POST_BUILD_STEP)
b75a7d8f 83
374ca955
A
84
85%.$(SECTION): $(srcdir)/%.$(SECTION).in
86 cd $(top_builddir) \
87 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
88
73c04bcf 89
b75a7d8f
A
90ifeq (,$(MAKECMDGOALS))
91-include $(DEPS)
92else
93ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
94-include $(DEPS)
95endif
96endif
73c04bcf 97