]>
Commit | Line | Data |
---|---|---|
374ca955 | 1 | ## Makefile.in for ICU - tools/gencase |
73c04bcf | 2 | ## Copyright (c) 1999-2005, International Business Machines Corporation and |
b75a7d8f | 3 | ## others. All Rights Reserved. |
374ca955 | 4 | ## Steven R. Loomis |
b75a7d8f A |
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/gencase | |
b75a7d8f | 16 | |
374ca955 A |
17 | TARGET_STUB_NAME = gencase |
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' | |
374ca955 | 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 | 35 | |
374ca955 | 36 | OBJECTS = gencase.o store.o |
b75a7d8f A |
37 | |
38 | DEPS = $(OBJECTS:.o=.d) | |
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 | ||
374ca955 | 55 | all-local: $(TARGET) $(MAN_FILES) |
b75a7d8f A |
56 | |
57 | install-local: all-local install-man | |
b75a7d8f | 58 | |
b75a7d8f | 59 | install-man: $(MAN_FILES) |
73c04bcf A |
60 | # $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION) |
61 | # $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION) | |
b75a7d8f A |
62 | |
63 | dist-local: | |
64 | ||
65 | clean-local: | |
66 | test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) | |
67 | $(RMV) $(TARGET) $(OBJECTS) | |
68 | ||
69 | distclean-local: clean-local | |
70 | $(RMV) Makefile | |
71 | ||
72 | check-local: all-local | |
73 | ||
74 | Makefile: $(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 A |
79 | $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) |
80 | ||
81 | ||
82 | %.$(SECTION): $(srcdir)/%.$(SECTION).in | |
83 | cd $(top_builddir) \ | |
84 | && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status | |
85 | ||
b75a7d8f A |
86 | |
87 | ifeq (,$(MAKECMDGOALS)) | |
88 | -include $(DEPS) | |
89 | else | |
90 | ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | |
91 | -include $(DEPS) | |
92 | endif | |
93 | endif | |
73c04bcf | 94 |