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