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

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. EXTRA_DIST = mi_test_all.sh mi_test_all.res
  14. pkgdata_DATA = mi_test_all mi_test_all.res
  15. INCLUDES = @MT_INCLUDES@ -I$(srcdir)/../include -I../include 
  16. LDADD = @CLIENT_EXTRA_LDFLAGS@ libmyisam.a ../mysys/libmysys.a 
  17. ../dbug/libdbug.a ../strings/libmystrings.a
  18. pkglib_LIBRARIES = libmyisam.a
  19. bin_PROGRAMS = myisamchk myisamlog myisampack
  20. myisamchk_DEPENDENCIES= $(LIBRARIES)
  21. myisamlog_DEPENDENCIES= $(LIBRARIES)
  22. myisampack_DEPENDENCIES=$(LIBRARIES)
  23. noinst_PROGRAMS = mi_test1 mi_test2 mi_test3 ft_test1 ft_eval
  24. noinst_HEADERS = myisamdef.h fulltext.h ftdefs.h ft_test1.h ft_eval.h
  25. mi_test1_DEPENDENCIES= $(LIBRARIES)
  26. mi_test2_DEPENDENCIES= $(LIBRARIES)
  27. mi_test3_DEPENDENCIES= $(LIBRARIES)
  28. ft_test1_DEPENDENCIES= $(LIBRARIES)
  29. ft_eval_DEPENDENCIES= $(LIBRARIES)
  30. libmyisam_a_SOURCES = mi_open.c mi_extra.c mi_info.c mi_rkey.c 
  31. mi_rnext.c mi_rnext_same.c 
  32. mi_search.c mi_page.c mi_key.c mi_locking.c 
  33. mi_rrnd.c mi_scan.c mi_cache.c 
  34. mi_statrec.c mi_packrec.c mi_dynrec.c 
  35. mi_update.c mi_write.c mi_unique.c 
  36. mi_delete.c 
  37. mi_rprev.c mi_rfirst.c mi_rlast.c mi_rsame.c 
  38. mi_rsamepos.c mi_panic.c mi_close.c mi_create.c
  39. mi_range.c mi_dbug.c mi_checksum.c mi_log.c 
  40. mi_changed.c mi_static.c mi_delete_all.c 
  41. mi_delete_table.c mi_rename.c  mi_check.c 
  42. ft_parser.c ft_search.c ft_stopwords.c ft_static.c 
  43. ft_update.c sort.c
  44. CLEANFILES = test?.MY? FT?.MY? isam.log mi_test_all
  45. DEFS = -DMAP_TO_USE_RAID
  46. # Omit dependency for ../mit-pthreads/include/sys that only exits if
  47. # mit-pthreads are used
  48. OMIT_DEPENDENCIES = pthread.h stdio.h __stdio.h stdlib.h __stdlib.h math.h
  49. __math.h time.h __time.h unistd.h __unistd.h types.h 
  50. xtypes.h ac-types.h posix.h string.h __string.h 
  51. errno.h socket.h inet.h dirent.h netdb.h 
  52. cleanup.h cond.h debug_out.h fd.h kernel.h mutex.h 
  53. prio_queue.h pthread_attr.h pthread_once.h queue.h
  54. sleep.h specific.h version.h pwd.h timers.h uio.h 
  55. cdefs.h machdep.h signal.h __signal.h util.h 
  56. wait.h
  57. # Move to automake rules ?
  58. prolint:; plparse -b -u -hF1 "-width(0,0)" "-format=%f:%l:s%t:%ns%m" 
  59. "-elib(????)" "+elib(?3??)" my.lnt $(nisam_SOURCES)
  60. SUFFIXES = .sh
  61. .sh:
  62. @RM@ -f $@ $@-t
  63. @SED@ 
  64.   -e 's!@''bindir''@!$(bindir)!g' 
  65.   -e 's!@''scriptdir''@!$(bindir)!g' 
  66.   -e 's!@''prefix''@!$(prefix)!g' 
  67.   -e 's!@''datadir''@!$(datadir)!g' 
  68.   -e 's!@''localstatedir''@!$(localstatedir)!g' 
  69.   -e 's!@''libexecdir''@!$(libexecdir)!g' 
  70.   -e 's!@''CC''@!@CC@!'
  71.   -e 's!@''CXX''@!@CXX@!'
  72.   -e 's!@''GXX''@!@GXX@!'
  73.   -e 's!@''PERL''@!@PERL@!' 
  74.   -e 's!@''CFLAGS''@!@SAVE_CFLAGS@!'
  75.   -e 's!@''CXXFLAGS''@!@SAVE_CXXFLAGS@!'
  76.   -e 's!@''LDFLAGS''@!@SAVE_LDFLAGS@!'
  77.   -e 's!@''VERSION''@!@VERSION@!' 
  78.   -e 's!@''MYSQL_SERVER_SUFFIX''@!@MYSQL_SERVER_SUFFIX@!' 
  79.   -e 's!@''COMPILATION_COMMENT''@!@COMPILATION_COMMENT@!' 
  80.   -e 's!@''MACHINE_TYPE''@!@MACHINE_TYPE@!' 
  81.   -e 's!@''HOSTNAME''@!@HOSTNAME@!' 
  82.   -e 's!@''SYSTEM_TYPE''@!@SYSTEM_TYPE@!' 
  83.   -e 's!@''CHECK_PID''@!@CHECK_PID@!' 
  84.   -e 's!@''FIND_PROC''@!@FIND_PROC@!' 
  85.   -e 's!@''MYSQLD_DEFAULT_SWITCHES''@!@MYSQLD_DEFAULT_SWITCHES@!' 
  86.   -e 's!@''MYSQL_UNIX_ADDR''@!@MYSQL_UNIX_ADDR@!' 
  87.   -e 's!@''IS_LINUX''@!@IS_LINUX@!' 
  88.   -e "s!@""CONF_COMMAND""@!@CONF_COMMAND@!" 
  89.   -e 's!@''MYSQLD_USER''@!@MYSQLD_USER@!' 
  90.   -e 's!@''sysconfdir''@!@sysconfdir@!' 
  91.   -e 's!@''SHORT_MYSQL_INTRO''@!@SHORT_MYSQL_INTRO@!' 
  92.   -e 's!@''SHARED_LIB_VERSION''@!@SHARED_LIB_VERSION@!' 
  93.   -e 's!@''MYSQL_BASE_VERSION''@!@MYSQL_BASE_VERSION@!' 
  94.   -e 's!@''MYSQL_NO_DASH_VERSION''@!@MYSQL_NO_DASH_VERSION@!' 
  95.   -e 's!@''MYSQL_TCP_PORT''@!@MYSQL_TCP_PORT@!' 
  96.   -e 's!@''PERL_DBI_VERSION''@!@PERL_DBI_VERSION@!' 
  97.   -e 's!@''PERL_DBD_VERSION''@!@PERL_DBD_VERSION@!' 
  98.   -e 's!@''PERL_DATA_DUMPER''@!@PERL_DATA_DUMPER@!' 
  99. $< > $@-t
  100. @CHMOD@ +x $@-t
  101. @MV@ $@-t $@
  102. # Don't update the files from bitkeeper
  103. %::SCCS/s.%