]> git.saurik.com Git - apple/icu.git/blame_incremental - icuSources/tools/genuca/Makefile.in
ICU-8.11.1.tar.gz
[apple/icu.git] / icuSources / tools / genuca / Makefile.in
... / ...
CommitLineData
1## Makefile.in for ICU - tools/genuca
2## Copyright (c) 1999-2005, International Business Machines Corporation and
3## others. All Rights Reserved.
4
5## Source directory information
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8
9top_builddir = ../..
10
11include $(top_builddir)/icudefs.mk
12
13## Build directory information
14subdir = tools/genuca
15
16TARGET_STUB_NAME = genuca
17
18SECTION = 8
19
20MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
21
22
23## Extra files to remove for 'make clean'
24CLEANFILES = *~ $(DEPS) $(MAN_FILES)
25
26## Target information
27TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
28
29ifneq ($(top_builddir),$(top_srcdir))
30CPPFLAGS += -I$(top_builddir)/common
31endif
32CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil
33LIBS = $(LIBICUI18N) $(LIBICUTOOLUTIL) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
34
35OBJECTS = genuca.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
64dist-local:
65
66clean-local:
67 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
68 $(RMV) $(TARGET) $(OBJECTS)
69
70distclean-local: clean-local
71 $(RMV) Makefile
72
73check-local: all-local
74
75Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
76 cd $(top_builddir) \
77 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
78
79$(TARGET) : $(OBJECTS)
80 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
81
82
83%.$(SECTION): $(srcdir)/%.$(SECTION).in
84 cd $(top_builddir) \
85 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
86
87
88ifeq (,$(MAKECMDGOALS))
89-include $(DEPS)
90else
91ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
92-include $(DEPS)
93endif
94endif
95