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