]>
Commit | Line | Data |
---|---|---|
b75a7d8f | 1 | ## Makefile.in for ICU - tools/genbrk |
73c04bcf | 2 | ## Copyright (c) 2002-2006 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 | 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 A |
34 | |
35 | OBJECTS = genbrk.o | |
36 | ||
37 | DEPS = $(OBJECTS:.o=.d) | |
38 | ||
39 | ## List of phony targets | |
40 | .PHONY : all all-local install install-local clean clean-local \ | |
73c04bcf | 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 | 55 | |
73c04bcf | 56 | install-local: all-local install-man |
b75a7d8f A |
57 | $(MKINSTALLDIRS) $(DESTDIR)$(bindir) |
58 | $(INSTALL) $(TARGET) $(DESTDIR)$(bindir) | |
59 | ||
73c04bcf A |
60 | install-man: $(MAN_FILES) |
61 | $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION) | |
62 | $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION) | |
63 | ||
374ca955 | 64 | dist-local: |
b75a7d8f | 65 | |
73c04bcf | 66 | clean-local: |
b75a7d8f A |
67 | test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) |
68 | $(RMV) $(TARGET) $(OBJECTS) | |
69 | ||
70 | distclean-local: clean-local | |
71 | $(RMV) Makefile | |
72 | ||
73 | check-local: all-local | |
74 | ||
75 | Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status | |
76 | cd $(top_builddir) \ | |
77 | && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status | |
78 | ||
79 | $(TARGET) : $(OBJECTS) | |
73c04bcf | 80 | $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) |
b75a7d8f A |
81 | |
82 | ||
83 | %.$(SECTION): $(srcdir)/%.$(SECTION).in | |
84 | cd $(top_builddir) \ | |
85 | && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status | |
86 | ||
b75a7d8f A |
87 | |
88 | ifeq (,$(MAKECMDGOALS)) | |
89 | -include $(DEPS) | |
90 | else | |
91 | ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | |
92 | -include $(DEPS) | |
93 | endif | |
94 | endif | |
95 |