1 ## Makefile.in for ICU - tools/genbidi
2 ## Copyright (c) 1999-2005, International Business Machines Corporation and
3 ## others. All Rights Reserved.
6 ## Source directory information
8 top_srcdir = @top_srcdir@
12 include $(top_builddir)/icudefs.mk
14 ## Build directory information
15 subdir = tools/genbidi
17 TARGET_STUB_NAME = genbidi
21 #MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
23 ## Extra files to remove for 'make clean'
24 CLEANFILES = *~ $(DEPS) $(MAN_FILES)
27 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
29 ifneq ($(top_builddir),$(top_srcdir))
30 CPPFLAGS += -I$(top_builddir)/common
32 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
33 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
35 OBJECTS = genbidi.o store.o
37 DEPS = $(OBJECTS:.o=.d)
39 ## List of phony targets
40 .PHONY : all all-local install install-local clean clean-local \
41 distclean distclean-local dist dist-local check check-local install-man
46 ## List of standard targets
48 install: install-local
50 distclean : distclean-local
52 check: all check-local
54 all-local: $(TARGET) $(MAN_FILES)
56 install-local: all-local install-man
58 install-man: $(MAN_FILES)
59 # $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
60 # $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
66 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
67 $(RMV) $(TARGET) $(OBJECTS)
69 distclean-local: clean-local
72 check-local: all-local
74 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
76 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
78 $(TARGET) : $(OBJECTS)
79 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
83 %.$(SECTION): $(srcdir)/%.$(SECTION).in
85 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
88 ifeq (,$(MAKECMDGOALS))
91 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)