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