]> git.saurik.com Git - apple/icu.git/blame - icuSources/tools/gencmn/Makefile.in
ICU-400.37.tar.gz
[apple/icu.git] / icuSources / tools / gencmn / Makefile.in
CommitLineData
b75a7d8f 1## Makefile.in for ICU - tools/gencmn
46f4442e 2## Copyright (c) 1999-2008, International Business Machines Corporation and
b75a7d8f
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/gencmn
16
374ca955 17TARGET_STUB_NAME = gencmn
374ca955 18
b75a7d8f
A
19SECTION = 8
20
73c04bcf 21MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
b75a7d8f 22
b75a7d8f
A
23
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 = gencmn.o
b75a7d8f
A
37
38DEPS = $(OBJECTS:.o=.d)
b75a7d8f
A
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
A
56
57install-local: all-local install-man
58 $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
374ca955 59 $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)
73c04bcf
A
60
61install-man: $(MAN_FILES)
62 $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
63 $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
b75a7d8f
A
64
65dist-local:
66
67clean-local:
68 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
73c04bcf 69 $(RMV) $(TARGET) $(OBJECTS)
b75a7d8f
A
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)
46f4442e
A
81 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
82 $(POST_BUILD_STEP)
374ca955 83
b75a7d8f
A
84%.$(SECTION): $(srcdir)/%.$(SECTION).in
85 cd $(top_builddir) \
86 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
87
73c04bcf 88
b75a7d8f
A
89ifeq (,$(MAKECMDGOALS))
90-include $(DEPS)
b75a7d8f
A
91else
92ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
93-include $(DEPS)
b75a7d8f
A
94endif
95endif
374ca955 96