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

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. benchdir = $(benchdir_root)/sql-bench
  20. bench_SCRIPTS = test-ATIS test-connect test-create test-insert 
  21. test-big-tables test-select test-wisconsin 
  22. test-alter-table 
  23. bench-init.pl compare-results run-all-tests 
  24. server-cfg crash-me copy-db
  25. CLEANFILES = $(bench_SCRIPTS)
  26. EXTRA_SCRIPTS = test-ATIS.sh test-connect.sh test-create.sh 
  27. test-insert.sh test-big-tables.sh test-select.sh 
  28. test-alter-table.sh test-wisconsin.sh 
  29. bench-init.pl.sh compare-results.sh server-cfg.sh 
  30. run-all-tests.sh crash-me.sh copy-db.sh
  31. EXTRA_DIST = $(EXTRA_SCRIPTS)
  32. dist-hook:
  33. mkdir -p $(distdir)/Data/ATIS $(distdir)/Data/Wisconsin 
  34.  $(distdir)/Results  $(distdir)/Results-win32 
  35.  $(distdir)/limits $(distdir)/Comments
  36. $(INSTALL_DATA) $(srcdir)/Data/ATIS/*.* $(distdir)/Data/ATIS
  37. $(INSTALL_DATA) $(srcdir)/Data/Wisconsin/*.* $(distdir)/Data/Wisconsin
  38. $(INSTALL_DATA) $(srcdir)/Results/*-* $(distdir)/Results
  39. $(INSTALL_DATA) $(srcdir)/Results-win32/*-* $(distdir)/Results-win32
  40. $(INSTALL_DATA) $(srcdir)/limits/*.* $(distdir)/limits
  41. $(INSTALL_DATA) $(srcdir)/Comments/*.* $(distdir)/Comments
  42. install-data-local:
  43. $(mkinstalldirs) 
  44.  $(DESTDIR)$(benchdir)/Data 
  45.  $(DESTDIR)$(benchdir)/Data/ATIS 
  46.  $(DESTDIR)$(benchdir)/Data/Wisconsin 
  47.  $(DESTDIR)$(benchdir)/Results 
  48.  $(DESTDIR)$(benchdir)/Results-win32 
  49.  $(DESTDIR)$(benchdir)/limits 
  50.  $(DESTDIR)$(benchdir)/Comments
  51. $(INSTALL_DATA) $(srcdir)/README  $(DESTDIR)$(benchdir)
  52. $(INSTALL_DATA) $(srcdir)/Data/ATIS/*.* $(DESTDIR)$(benchdir)/Data/ATIS
  53. $(INSTALL_DATA) $(srcdir)/Data/Wisconsin/*.* $(DESTDIR)$(benchdir)/Data/Wisconsin
  54. $(INSTALL_DATA) $(srcdir)/Results/*-* $(DESTDIR)$(benchdir)/Results
  55. $(INSTALL_DATA) $(srcdir)/Results-win32/*-* $(DESTDIR)$(benchdir)/Results-win32
  56. $(INSTALL_DATA) $(srcdir)/limits/*.* $(DESTDIR)$(benchdir)/limits
  57. $(INSTALL_DATA) $(srcdir)/Comments/*.* $(DESTDIR)$(benchdir)/Comments
  58. SUFFIXES = .sh
  59. .sh:
  60. @RM@ -f $@ $@-t
  61. @SED@ 
  62.   -e 's!@''benchdir''@!$(benchdir)!g' 
  63.   -e 's!@''bindir''@!$(bindir)!g' 
  64.   -e 's!@''scriptdir''@!$(bindir)!g' 
  65.   -e 's!@''prefix''@!$(prefix)!g' 
  66.   -e 's!@''datadir''@!$(datadir)!g' 
  67.   -e 's!@''localstatedir''@!$(localstatedir)!g' 
  68.   -e 's!@''libexecdir''@!$(libexecdir)!g' 
  69.   -e 's!@''PERL''@!@PERL@!' 
  70.   -e 's!@''VERSION''@!@VERSION@!' 
  71.   -e 's!@''MYSQL_SERVER_SUFFIX''@!@MYSQL_SERVER_SUFFIX@!' 
  72.   $< > $@-t
  73. @CHMOD@ +x $@-t
  74. @MV@ $@-t $@
  75. # Don't update the files from bitkeeper
  76. %::SCCS/s.%