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