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