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

MySQL数据库

开发平台:

Visual C++

  1. # Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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; either version 2 of the License, or
  5. # (at your option) any later version.
  6. # This program is distributed in the hope that it will be useful,
  7. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9. # GNU General Public License for more details.
  10. # You should have received a copy of the GNU General Public License
  11. # along with this program; if not, write to the Free Software
  12. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  13. # Process this file with automake to create Makefile.in
  14. AUTOMAKE_OPTIONS = foreign
  15. TAR = gtar
  16. # These are built from source in the Docs directory
  17. EXTRA_DIST = INSTALL-SOURCE README 
  18. COPYING COPYING.LIB MIRRORS
  19. SUBDIRS = include @docs_dirs@ @readline_dir@ 
  20. @thread_dirs@ @sql_client_dirs@ 
  21. @sql_server_dirs@ scripts tests man 
  22. @bench_dirs@ support-files
  23. # Relink after clean
  24. CLEANFILES = linked_client_sources linked_server_sources linked_libmysql_sources linked_libmysql_r_sources linked_include_sources
  25. # This is just so that the linking is done early.
  26. config.h: linked_include_sources linked_client_sources linked_server_sources linked_libmysql_sources linked_libmysql_r_sources
  27. linked_include_sources:
  28. cd include; $(MAKE) link_sources
  29. echo timestamp > linked_include_sources
  30. linked_client_sources:  @linked_client_targets@
  31. echo timestamp > linked_client_sources
  32. linked_libmysql_sources:
  33. cd libmysql; $(MAKE) link_sources
  34. echo timestamp > linked_libmysql_sources
  35. linked_libmysql_r_sources: linked_libmysql_sources
  36. cd libmysql_r; $(MAKE) link_sources
  37. echo timestamp > linked_libmysql_r_sources
  38. #avoid recursive make calls in sql directory
  39. linked_server_sources:
  40. cd sql; rm -f mini_client_errors.c;@LN_CP_F@ ../libmysql/errmsg.c mini_client_errors.c
  41. echo timestamp > linked_server_sources
  42. # Create permission databases
  43. init-db: all
  44. $(top_builddir)/scripts/mysql_install_db
  45. bin-dist: all
  46. $(top_builddir)/scripts/make_binary_distribution
  47. .PHONY: init-db bin-dist
  48. # Test installation
  49. test:
  50. cd mysql-test ; ./mysql-test-run