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