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