Makefile.in
上传用户: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. # Adaptor makefile to translate between what automake expects and what
  14. # BDB provides (or vice versa).
  15. srcdir = @srcdir@
  16. top_srcdir = @top_srcdir@
  17. # distdir and top_distdir are set by the calling Makefile
  18. bdb_build = build_unix
  19. files = LICENSE Makefile Makefile.in README
  20. subdirs = btree build_vxworks build_win32 clib common cxx db db185 
  21. db_archive db_checkpoint db_deadlock db_dump db_dump185 db_load 
  22. db_printlog db_recover db_stat db_upgrade db_verify dbm dist docs 
  23. env examples_c examples_cxx hash hsearch include java libdb_java 
  24. lock log mp mutex os os_vxworks os_win32 perl.BerkeleyDB 
  25. perl.DB_File qam rpc_client rpc_server tcl test txn xa
  26. @SET_MAKE@
  27. all:
  28. cd $(bdb_build) && $(MAKE) all
  29. # May want to fix this, and MYSQL/configure, to install things
  30. install dvi check installcheck:
  31. distdir:
  32. for s in $(subdirs); do 
  33.   cp -pr $(srcdir)/$$s $(distdir)/$$s; 
  34. done
  35. for f in $(files); do 
  36.   test -f $(distdir)/$$f || cp -p $(srcdir)/$$f $(distdir)/$$f; 
  37. done
  38. mkdir $(distdir)/$(bdb_build)
  39. cp -p $(srcdir)/$(bdb_build)/.IGNORE_ME $(distdir)/$(bdb_build)