home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / test / ieeetest / Makefile.in < prev   
Encoding:
Makefile  |  1999-09-04  |  2.0 KB  |  104 lines

  1. ## Makefile.in for ICU - test/ieeetest
  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/ieeetest
  42.  
  43. ## Extra files to remove for 'make clean'
  44. CLEANFILES = *~
  45.  
  46. ## Target information
  47. TARGET = ieeetest
  48.  
  49. DEFS = @DEFS@
  50. CPPFLAGS = @CPPFLAGS@ -I$(top_srcdir)/common
  51. CFLAGS = @CFLAGS@
  52. CXXFLAGS = @CXXFLAGS@
  53. LDFLAGS = @LDFLAGS@ $(LD_RPATH)$(LD_RPATH_PRE)$(top_builddir)/common
  54. LIBS = $(LIBICU-UC) @LIBS@ @LIB_M@
  55.  
  56. OBJECTS = ieeetest.o
  57.  
  58. DEPS = $(OBJECTS:.o=.d)
  59.  
  60. ## List of phony targets
  61. .PHONY : all all-local install install-local clean clean-local    \
  62. distclean distclean-local dist dist-local check check-local
  63.  
  64. ## Clear suffix list
  65. .SUFFIXES :
  66.  
  67. ## List of standard targets
  68. all: all-local
  69. install: install-local
  70. clean: clean-local
  71. distclean : distclean-local
  72. dist: dist-local
  73. check: check-local
  74.  
  75. all-local: $(TARGET)
  76.  
  77. install-local: all-local
  78.  
  79. dist-local:
  80.  
  81. clean-local:
  82.     test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  83.     rm -f $(OBJECTS) $(TARGET)
  84.  
  85. distclean-local: clean-local
  86.     rm -f Makefile $(DEPS)
  87.  
  88. check-local: $(TARGET)
  89.     ICU_DATA=$(top_builddir)/../data/ ./$(TARGET)
  90.  
  91. Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
  92.     cd $(top_builddir) \
  93.      && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
  94.  
  95. $(TARGET) : $(OBJECTS)
  96.     $(LINK.cc) -o $@ $^ $(LIBS)
  97.  
  98. ifneq ($(MAKECMDGOALS),distclean)
  99. -include $(DEPS)
  100. endif
  101.  
  102.  
  103.  
  104.