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