]>
Commit | Line | Data |
---|---|---|
b75a7d8f | 1 | ## Makefile.in for ICU - tools/makeconv |
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) 1999-2011, International Business Machines Corporation and |
b75a7d8f A |
5 | ## others. All Rights Reserved. |
6 | ## Stephen F. Booth | |
7 | ||
8 | ## Source directory information | |
9 | srcdir = @srcdir@ | |
10 | top_srcdir = @top_srcdir@ | |
11 | ||
12 | top_builddir = ../.. | |
13 | ||
14 | include $(top_builddir)/icudefs.mk | |
15 | ||
73c04bcf A |
16 | ## Build directory information |
17 | subdir = tools/makeconv | |
b75a7d8f | 18 | |
374ca955 | 19 | TARGET_STUB_NAME = makeconv |
b75a7d8f | 20 | |
374ca955 | 21 | SECTION = 1 |
b75a7d8f | 22 | |
73c04bcf | 23 | MAN_FILES = $(TARGET_STUB_NAME).$(SECTION) |
b75a7d8f A |
24 | |
25 | ## Extra files to remove for 'make clean' | |
73c04bcf | 26 | CLEANFILES = *~ $(DEPS) $(MAN_FILES) |
b75a7d8f A |
27 | |
28 | ## Target information | |
374ca955 | 29 | TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) |
b75a7d8f | 30 | |
f3c0d7a5 | 31 | CPPFLAGS += -I$(srcdir) -I$(top_srcdir)/common -I$(srcdir)/../toolutil |
73c04bcf | 32 | LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) |
b75a7d8f | 33 | |
374ca955 | 34 | OBJECTS = makeconv.o ucnvstat.o genmbcs.o gencnvex.o |
b75a7d8f A |
35 | |
36 | DEPS = $(OBJECTS:.o=.d) | |
37 | ||
b75a7d8f | 38 | ## List of phony targets |
73c04bcf A |
39 | .PHONY : all all-local install install-local clean clean-local \ |
40 | distclean 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 | |
46 | all: all-local | |
47 | install: install-local | |
48 | clean: clean-local | |
49 | distclean : distclean-local | |
50 | dist: dist-local | |
51 | check: all check-local | |
52 | ||
73c04bcf | 53 | all-local: $(TARGET) $(MAN_FILES) |
b75a7d8f A |
54 | |
55 | install-local: all-local install-man | |
56 | $(MKINSTALLDIRS) $(DESTDIR)$(bindir) | |
374ca955 | 57 | $(INSTALL) $(TARGET) $(DESTDIR)$(bindir) |
b75a7d8f | 58 | |
73c04bcf A |
59 | install-man: $(MAN_FILES) |
60 | $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION) | |
61 | $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION) | |
b75a7d8f | 62 | |
73c04bcf A |
63 | |
64 | dist-local: | |
b75a7d8f A |
65 | |
66 | clean-local: | |
67 | test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) | |
68 | $(RMV) $(TARGET) $(OBJECTS) | |
69 | ||
70 | distclean-local: clean-local | |
71 | $(RMV) Makefile | |
72 | ||
73 | check-local: all-local | |
74 | ||
b75a7d8f A |
75 | Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status |
76 | cd $(top_builddir) \ | |
77 | && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status | |
78 | ||
73c04bcf | 79 | $(TARGET) : $(OBJECTS) |
b75a7d8f | 80 | $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) |
46f4442e | 81 | $(POST_BUILD_STEP) |
b75a7d8f | 82 | |
b75a7d8f A |
83 | |
84 | %.$(SECTION): $(srcdir)/%.$(SECTION).in | |
85 | cd $(top_builddir) \ | |
86 | && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status | |
87 | ||
88 | ||
89 | ifeq (,$(MAKECMDGOALS)) | |
90 | -include $(DEPS) | |
91 | else | |
92 | ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | |
93 | -include $(DEPS) | |
94 | endif | |
95 | endif | |
73c04bcf | 96 |