]> git.saurik.com Git - apple/icu.git/blame - icuSources/tools/gencnval/Makefile.in
ICU-57131.0.1.tar.gz
[apple/icu.git] / icuSources / tools / gencnval / Makefile.in
CommitLineData
b75a7d8f 1## Makefile.in for ICU - tools/gencnval
4388f060 2## Copyright (c) 1999-2011, 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/gencnval
16
374ca955 17TARGET_STUB_NAME = gencnval
b75a7d8f 18
374ca955 19SECTION = 1
b75a7d8f 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
30CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
31LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
b75a7d8f
A
32
33OBJECTS = gencnval.o
34
35DEPS = $(OBJECTS:.o=.d)
36
b75a7d8f 37## List of phony targets
374ca955 38.PHONY : all all-local install install-local clean clean-local \
73c04bcf 39distclean distclean-local dist dist-local check check-local install-man
b75a7d8f
A
40
41## Clear suffix list
42.SUFFIXES :
43
44## List of standard targets
45all: all-local
46install: install-local
47clean: clean-local
48distclean : distclean-local
49dist: dist-local
50check: all check-local
51
73c04bcf 52all-local: $(TARGET) $(MAN_FILES)
b75a7d8f 53
374ca955 54install-local: all-local install-man
b75a7d8f 55 $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
374ca955 56 $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
b75a7d8f 57
73c04bcf
A
58install-man: $(MAN_FILES)
59 $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
60 $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
b75a7d8f
A
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)
73c04bcf 78 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
46f4442e 79 $(POST_BUILD_STEP)
b75a7d8f 80
b75a7d8f
A
81
82%.$(SECTION): $(srcdir)/%.$(SECTION).in
83 cd $(top_builddir) \
84 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
b75a7d8f 85
b75a7d8f
A
86
87ifeq (,$(MAKECMDGOALS))
88-include $(DEPS)
89else
90ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
91-include $(DEPS)
92endif
93endif
94