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