home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / mysql / share / Makefile.am < prev    next >
Makefile  |  2008-01-11  |  2KB  |  63 lines

  1. # Copyright (C) 2000 MySQL AB
  2. # This program is free software; you can redistribute it and/or modify
  3. # it under the terms of the GNU General Public License as published by
  4. # the Free Software Foundation; version 2 of the License.
  5. # This program is distributed in the hope that it will be useful,
  6. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  8. # GNU General Public License for more details.
  9. # You should have received a copy of the GNU General Public License
  10. # along with this program; if not, write to the Free Software
  11. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  12.  
  13. ## Process this file with automake to create Makefile.in
  14.  
  15. EXTRA_DIST= errmsg.txt
  16.  
  17. dist-hook:
  18.     for dir in charsets @AVAILABLE_LANGUAGES@; do \
  19.       test -d $(distdir)/$$dir || mkdir $(distdir)/$$dir; \
  20.       $(INSTALL_DATA) $(srcdir)/$$dir/*.* $(distdir)/$$dir; \
  21.     done; \
  22.     sleep 1 ; touch $(srcdir)/*/errmsg.sys
  23.     $(INSTALL_DATA) $(srcdir)/charsets/README $(distdir)/charsets
  24.     $(INSTALL_DATA) $(srcdir)/charsets/Index.xml $(distdir)/charsets
  25.  
  26. all-local:    english/errmsg.sys
  27.  
  28. # Use the english errmsg.sys as a flag that all errmsg.sys needs to be
  29. # created. Normally these are created by extra/Makefile
  30.  
  31. english/errmsg.sys: errmsg.txt
  32.     rm -f $(top_builddir)/include/mysqld_error.h
  33.     (cd $(top_builddir)/extra && $(MAKE))
  34.  
  35. install-data-local:
  36.     for lang in @AVAILABLE_LANGUAGES@; \
  37.     do \
  38.         $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$$lang; \
  39.         $(INSTALL_DATA) $(srcdir)/$$lang/errmsg.sys \
  40.                     $(DESTDIR)$(pkgdatadir)/$$lang/errmsg.sys; \
  41.     done
  42.     $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/charsets
  43.         $(INSTALL_DATA) $(srcdir)/errmsg.txt \
  44.             $(DESTDIR)$(pkgdatadir)/errmsg.txt; \
  45.     $(INSTALL_DATA) $(srcdir)/charsets/README $(DESTDIR)$(pkgdatadir)/charsets/README
  46.     $(INSTALL_DATA) $(srcdir)/charsets/*.xml $(DESTDIR)$(pkgdatadir)/charsets
  47.  
  48. # FIXME maybe shouldn't remove, could be needed by other installation?
  49. uninstall-local:
  50.     @RM@ -f -r $(DESTDIR)$(pkgdatadir)
  51.  
  52. distclean-local:
  53.     @RM@ -f */errmsg.sys
  54.  
  55. # Do nothing
  56. link_sources:
  57.  
  58. # Don't update the files from bitkeeper
  59. %::SCCS/s.%
  60.