Home | History | Annotate | Download | only in genbidi
      1 ## Makefile.in for ICU - tools/genbidi
      2 ## Copyright (c) 1999-2005, International Business Machines Corporation and
      3 ## others. All Rights Reserved.
      4 ## Steven R. Loomis
      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 
     14 ## Build directory information
     15 subdir = tools/genbidi
     16 
     17 TARGET_STUB_NAME = genbidi
     18 
     19 SECTION = 8
     20 
     21 #MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
     22 
     23 ## Extra files to remove for 'make clean'
     24 CLEANFILES = *~ $(DEPS) $(MAN_FILES)
     25 
     26 ## Target information
     27 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
     28 
     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)
     34 
     35 OBJECTS = genbidi.o store.o
     36 
     37 DEPS = $(OBJECTS:.o=.d)
     38 
     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
     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 
     54 all-local: $(TARGET) $(MAN_FILES)
     55 
     56 install-local: all-local install-man
     57 
     58 install-man: $(MAN_FILES)
     59 #	$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
     60 #	$(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
     61 
     62 
     63 dist-local:
     64 
     65 clean-local:
     66 	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
     67 	$(RMV) $(TARGET) $(OBJECTS)
     68 
     69 distclean-local: clean-local
     70 	$(RMV) Makefile
     71 
     72 check-local: all-local
     73 
     74 Makefile: $(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 
     88 ifeq (,$(MAKECMDGOALS))
     89 -include $(DEPS)
     90 else
     91 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
     92 -include $(DEPS)
     93 endif
     94 endif
     95 
     96