Makefile.am
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2. #
  3. # This library is free software; you can redistribute it and/or
  4. # modify it under the terms of the GNU Library General Public
  5. # License as published by the Free Software Foundation; either
  6. # version 2 of the License, or (at your option) any later version.
  7. #
  8. # This library is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. # Library General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU Library General Public
  14. # License along with this library; if not, write to the Free
  15. # Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16. # MA 02111-1307, USA
  17. ## Process this file with automake to create Makefile.in
  18. benchdir_root= $(prefix)
  19. testdir =         $(benchdir_root)/mysql-test
  20. EXTRA_SCRIPTS =  mysql-test-run.sh install_test_db.sh
  21. EXTRA_DIST =  $(EXTRA_SCRIPTS) 
  22. test_SCRIPTS =  mysql-test-run install_test_db
  23. CLEANFILES =  $(test_SCRIPTS)
  24. dist-hook:
  25. mkdir -p $(distdir)/t $(distdir)/r $(distdir)/include 
  26. $(distdir)/std_data
  27. $(INSTALL_DATA) $(srcdir)/t/*.test $(srcdir)/t/*.opt $(distdir)/t
  28. $(INSTALL_DATA) $(srcdir)/include/*.inc $(distdir)/include
  29. $(INSTALL_DATA) $(srcdir)/r/*.result $(srcdir)/r/*.require $(distdir)/r
  30. $(INSTALL_DATA) $(srcdir)/std_data/*.dat $(distdir)/std_data
  31. install-data-local:
  32. $(mkinstalldirs) 
  33. $(DESTDIR)$(testdir)/t 
  34. $(DESTDIR)$(testdir)/r 
  35. $(DESTDIR)$(testdir)/include 
  36. $(DESTDIR)$(testdir)/std_data
  37. $(INSTALL_DATA) $(srcdir)/README $(DESTDIR)$(testdir)
  38. $(INSTALL_DATA) $(srcdir)/t/*.test $(DESTDIR)$(testdir)/t
  39. $(INSTALL_DATA) $(srcdir)/t/*.opt $(DESTDIR)$(testdir)/t
  40. $(INSTALL_DATA) $(srcdir)/r/*.result $(DESTDIR)$(testdir)/r
  41. $(INSTALL_DATA) $(srcdir)/include/*.inc $(DESTDIR)$(testdir)/include
  42. $(INSTALL_DATA) $(srcdir)/std_data/*.dat $(DESTDIR)$(testdir)/std_data
  43. SUFFIXES = .sh
  44. .sh:
  45. @RM@ -f $@ $@-t
  46. @SED@ 
  47.   -e 's!@''testdir''@!$(testdir)!g' 
  48.   -e 's!@''bindir''@!$(bindir)!g' 
  49.   -e 's!@''scriptdir''@!$(bindir)!g' 
  50.   -e 's!@''prefix''@!$(prefix)!g' 
  51.   -e 's!@''datadir''@!$(datadir)!g' 
  52.   -e 's!@''localstatedir''@!$(localstatedir)!g' 
  53.   -e 's!@''libexecdir''@!$(libexecdir)!g' 
  54.   -e 's!@''PERL''@!@PERL@!' 
  55.   -e 's!@''VERSION''@!@VERSION@!' 
  56.   -e 's!@''MYSQL_SERVER_SUFFIX''@!@MYSQL_SERVER_SUFFIX@!' 
  57.   $< > $@-t
  58. @CHMOD@ +x $@-t
  59. @MV@ $@-t $@
  60. # Don't update the files from bitkeeper
  61. %::SCCS/s.%