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