home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / samples / XMLConverter / Makefile.in next >
Encoding:
Makefile  |  1999-09-04  |  2.0 KB  |  103 lines

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