home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / test / intltest / Makefile.in < prev    next >
Encoding:
Makefile  |  1999-11-09  |  2.7 KB  |  114 lines

  1. ## Makefile.in for ICU - test/intltest
  2. ## Stephen F. Booth
  3.  
  4. ## Shell to use
  5. SHELL = @SHELL@
  6.  
  7. ## Install directory information
  8. srcdir = @srcdir@
  9. top_srcdir = @top_srcdir@
  10. prefix = @prefix@
  11. exec_prefix = @exec_prefix@
  12.  
  13. bindir = @bindir@
  14. sbindir = @sbindir@
  15. datadir = @datadir@
  16. libdir = @libdir@
  17. includedir = @includedir@
  18.  
  19. pkgdatadir = $(datadir)/@PACKAGE@
  20. pkglibdir = $(libdir)/@PACKAGE@
  21. pkgincludedir = $(includedir)/@PACKAGE@
  22.  
  23. ## Install program information
  24. mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  25.  
  26. INSTALL = @INSTALL@
  27. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  28. INSTALL_DATA = @INSTALL_DATA@
  29.  
  30. ## Compiler/tools information
  31. CC = @CC@
  32. CXX = @CXX@
  33. PACKAGE = @PACKAGE@
  34. VERSION = @VERSION@
  35.  
  36. ## Platform-specific setup
  37. @host_frag@
  38.  
  39. ## Build directory information
  40. top_builddir = ../..
  41. subdir = test/intltest
  42.  
  43. ## Extra files to remove for 'make clean'
  44. CLEANFILES = *~
  45.  
  46. ## Target information
  47. TARGET = intltest
  48.  
  49. DEFS = @DEFS@
  50. CPPFLAGS = @CPPFLAGS@ -I$(top_srcdir)/common -I$(top_srcdir)/i18n
  51. CFLAGS = @CFLAGS@
  52. CXXFLAGS = @CXXFLAGS@
  53. LDFLAGS = @LDFLAGS@ \
  54. $(LD_RPATH)$(LD_RPATH_PRE)$(top_builddir)/common@ld_rpath_suf@$(LD_RPATH_PRE)$(top_builddir)/i18n
  55. LIBS = $(LIBICU-I18N) $(LIBICU-UC) @LIBS@ @LIB_M@
  56.  
  57. OBJECTS = allcoll.o apicoll.o callimts.o calregts.o caltest.o        \
  58. caltztst.o citrtest.o cppcnvt.o cpputils.o currcoll.o dacoll.o        \
  59. dcfmapts.o decoll.o dtfmapts.o dtfmrgts.o dtfmtrtts.o dtfmttst.o    \
  60. encoll.o escoll.o ficoll.o frcoll.o g7coll.o intltest.o isocoll.o    \
  61. itconv.o itercoll.o itformat.o itmajor.o ittxtbd.o itutil.o jacoll.o    \
  62. loctest.o miscdtfm.o mnkytst.o msfmrgts.o nmfmapts.o nmfmtrt.o        \
  63. numfmtst.o numrgts.o pptest.o regcoll.o restest.o sdtfmtts.o tchcfmt.o    \
  64. tfsmalls.o tmsgfmt.o trcoll.o tscoll.o tsdate.o tsdcfmsy.o tsdtfmsy.o    \
  65. tsmthred.o tsmutex.o tsnmfmt.o tsputil.o tstnorm.o tzbdtest.o        \
  66. tzregts.o tztest.o ucdtest.o usettest.o ustrtest.o
  67.  
  68. DEPS = $(OBJECTS:.o=.d)
  69.  
  70. ## List of phony targets
  71. .PHONY : all all-local install install-local clean clean-local \
  72. distclean distclean-local dist dist-local check check-local
  73.  
  74. ## Clear suffix list
  75. .SUFFIXES :
  76.  
  77. ## List of standard targets
  78. all: all-local
  79. install: install-local
  80. clean: clean-local
  81. distclean : distclean-local
  82. dist: dist-local
  83. check: check-local
  84.  
  85. all-local: $(TARGET)
  86.  
  87. install-local: all-local
  88.  
  89. dist-local:
  90.  
  91. clean-local:
  92.     test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  93.     rm -f $(OBJECTS) $(TARGET)
  94.  
  95. distclean-local: clean-local
  96.     rm -f Makefile $(DEPS)
  97.  
  98. check-local: $(TARGET)
  99.     HOME=$(top_builddir)/../.. ICU_DATA=$(top_builddir)/../data/ TZ=PST8PDT ./$(TARGET)
  100.  
  101. Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
  102.     cd $(top_builddir) \
  103.      && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
  104.  
  105. $(TARGET) : $(OBJECTS)
  106.     $(LINK.cc) -o $@ $^ $(LIBS)
  107.  
  108. ifneq ($(MAKECMDGOALS),distclean)
  109. -include $(DEPS)
  110. endif
  111.  
  112.  
  113.  
  114.