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

  1. ## Makefile.in for ICU - extra/ustdio/libustdio.so
  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 = extra/ustdio
  42.  
  43. ## Extra files to remove for 'make clean'
  44. CLEANFILES = *~
  45.  
  46. ## Target information
  47. TARGET = libustdio.$(SO)
  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)$(libdir)@ld_rpath_suf@$(LD_RPATH_PRE)$(top_builddir)/common@ld_rpath_suf@$(LD_RPATH_PRE)$(top_builddir)/i18n
  55. LIBS = $(LIBICU-I18N) $(LIBICU-UC) @LIBS@
  56.  
  57. OBJECTS = locbund.o loccache.o ufile.o ufmt_cmn.o uprintf.o uprntf_p.o    \
  58. uscanf.o uscanf_p.o uscanset.o ustdio.o
  59.  
  60. HEADERS = ustdio.h
  61.  
  62. DEPS = $(OBJECTS:.o=.d)
  63.  
  64. ## List of phony targets
  65. .PHONY : all all-local install install-local clean clean-local \
  66. distclean distclean-local dist dist-local check check-local
  67.  
  68. ## Clear suffix list
  69. .SUFFIXES :
  70.  
  71. ## List of standard targets
  72. all: all-local
  73. install: install-local
  74. clean: clean-local
  75. distclean : distclean-local
  76. dist: dist-local
  77. check: check-local
  78.  
  79. all-local: $(TARGET)
  80.  
  81. install-local: all-local install-headers install-library
  82.  
  83. install-library: all-local
  84.     $(mkinstalldirs) $(libdir)
  85.     $(INSTALL) $(TARGET) $(libdir)/$(TARGET)
  86.  
  87. install-headers:
  88.     $(mkinstalldirs) $(includedir)
  89.     @list='$(HEADERS)'; for file in $$list; do \
  90.      echo " $(INSTALL_DATA) $$file $(includedir)/$$file"; \
  91.      $(INSTALL_DATA) $$file $(includedir)/$$file; \
  92.     done
  93.  
  94.  
  95. dist-local:
  96.  
  97. clean-local:
  98.     test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  99.     rm -f $(OBJECTS) $(TARGET)
  100.  
  101. distclean-local: clean-local
  102.     rm -f Makefile $(DEPS)
  103.  
  104. check-local:
  105.  
  106. Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
  107.     cd $(top_builddir) \
  108.      && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
  109.  
  110. $(TARGET) : $(OBJECTS)
  111.     $(SHLIB.c) -o $@ $^ $(LIBS)
  112.  
  113. ifneq ($(MAKECMDGOALS),distclean)
  114. -include $(DEPS)
  115. endif
  116.  
  117.  
  118.  
  119.