Makefile.am
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小: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 test-transactions 
  23. graph-compare-results 
  24. bench-init.pl compare-results run-all-tests 
  25. server-cfg crash-me copy-db innotest1 innotest1a 
  26. innotest1b innotest2 innotest2a innotest2b 
  27. bench-count-distinct
  28. CLEANFILES = $(bench_SCRIPTS)
  29. EXTRA_SCRIPTS = test-ATIS.sh test-connect.sh test-create.sh 
  30. test-insert.sh test-big-tables.sh test-select.sh 
  31. test-alter-table.sh test-wisconsin.sh 
  32. test-transactions.sh 
  33. bench-init.pl.sh compare-results.sh server-cfg.sh 
  34. run-all-tests.sh crash-me.sh copy-db.sh 
  35. graph-compare-results.sh innotest1.sh innotest1a.sh 
  36. innotest1b.sh innotest2.sh innotest2a.sh innotest2b.sh 
  37. bench-count-distinct.sh
  38. EXTRA_DIST = $(EXTRA_SCRIPTS)
  39. dist-hook:
  40. mkdir -p $(distdir)/Data/ATIS $(distdir)/Data/Wisconsin 
  41.  $(distdir)/limits $(distdir)/Comments
  42. for i in $(srcdir)/Data/ATIS/*.* ; do $(INSTALL_DATA) $$i $(distdir)/Data/ATIS ; done
  43. for i in $(srcdir)/Data/Wisconsin/*.* ; do $(INSTALL_DATA) $$i $(distdir)/Data/Wisconsin ; done
  44. for i in $(srcdir)/limits/*.* ; do $(INSTALL_DATA) $$i $(distdir)/limits; done
  45. for i in $(srcdir)/Comments/*.* ; do $(INSTALL_DATA) $$i $(distdir)/Comments; done
  46. install-data-local:
  47. $(mkinstalldirs) 
  48.  $(DESTDIR)$(benchdir)/Data 
  49.  $(DESTDIR)$(benchdir)/Data/ATIS 
  50.  $(DESTDIR)$(benchdir)/Data/Wisconsin 
  51.  $(DESTDIR)$(benchdir)/limits 
  52.  $(DESTDIR)$(benchdir)/Comments
  53. $(INSTALL_DATA) $(srcdir)/README  $(DESTDIR)$(benchdir)
  54. for i in $(srcdir)/Data/ATIS/*.* ; do $(INSTALL_DATA) $$i $(DESTDIR)$(benchdir)/Data/ATIS ; done
  55. for i in $(srcdir)/Data/Wisconsin/*.* ; do $(INSTALL_DATA) $$i $(DESTDIR)$(benchdir)/Data/Wisconsin ; done
  56. for i in $(srcdir)/limits/*.* ; do $(INSTALL_DATA) $$i $(DESTDIR)$(benchdir)/limits; done
  57. for i in $(srcdir)/Comments/*.* ; do $(INSTALL_DATA) $$i $(DESTDIR)$(benchdir)/Comments; done
  58. uninstall-local:
  59. @RM@ -f -r $(DESTDIR)$(benchdir)
  60. SUFFIXES = .sh
  61. .sh:
  62. @RM@ -f $@ $@-t
  63. @SED@ 
  64.   -e 's!@''benchdir''@!$(benchdir)!g' 
  65.   -e 's!@''bindir''@!$(bindir)!g' 
  66.   -e 's!@''scriptdir''@!$(bindir)!g' 
  67.   -e 's!@''prefix''@!$(prefix)!g' 
  68.   -e 's!@''datadir''@!$(datadir)!g' 
  69.   -e 's!@''localstatedir''@!$(localstatedir)!g' 
  70.   -e 's!@''libexecdir''@!$(libexecdir)!g' 
  71.   -e 's!@''PERL''@!@PERL@!' 
  72.   -e 's!@''VERSION''@!@VERSION@!' 
  73.   -e 's!@''MYSQL_SERVER_SUFFIX''@!@MYSQL_SERVER_SUFFIX@!' 
  74.   $< > $@-t
  75. @CHMOD@ +x $@-t
  76. @MV@ $@-t $@
  77. # Don't update the files from bitkeeper
  78. %::SCCS/s.%