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

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. # This file is public domain and comes with NO WARRANTY of any kind
  14. INCLUDES = @MT_INCLUDES@ -I$(srcdir)/../include -I../include
  15. pkglib_LIBRARIES = libmystrings.a
  16. # Exact one of ASSEMBLER_X
  17. if ASSEMBLER_x86
  18. ASRCS = strings-x86.s longlong2str-x86.s
  19. CSRCS = bfill.c bmove.c bmove512.c bchange.c strxnmov.c int2str.c str2int.c r_strinstr.c atof.c bcmp.c strtol.c strtoul.c strtoll.c strtoull.c strxmov.c bmove_upp.c strappend.c strcont.c strend.c strfill.c strcend.c is_prefix.c strstr.c strinstr.c strmake.c strnmov.c strmov.c longlong2str.c llstr.c ctype.c strnlen.c
  20. else
  21. if ASSEMBLER_sparc
  22. # These file MUST all be on the same line!! Otherwise automake
  23. # generats a very broken makefile
  24. ASRCS = bmove_upp-sparc.s strappend-sparc.s strend-sparc.s strinstr-sparc.s strmake-sparc.s strmov-sparc.s strnmov-sparc.s strstr-sparc.s strxmov-sparc.s
  25. CSRCS = strcont.c strfill.c strcend.c is_prefix.c longlong2str.c bfill.c bmove.c bmove512.c bchange.c strxnmov.c int2str.c str2int.c r_strinstr.c atof.c bcmp.c strtol.c strtoul.c strtoll.c strtoull.c llstr.c ctype.c strnlen.c
  26. else
  27. #no assembler
  28. ASRCS =
  29. # These file MUST all be on the same line!! Otherwise automake
  30. # generats a very broken makefile
  31. CSRCS = strxmov.c bmove_upp.c strappend.c strcont.c strend.c strfill.c strcend.c is_prefix.c strstr.c strinstr.c strmake.c strnmov.c strmov.c longlong2str.c bfill.c bmove.c bmove512.c bchange.c strxnmov.c int2str.c str2int.c r_strinstr.c atof.c bcmp.c strtol.c strtoul.c strtoll.c strtoull.c llstr.c ctype.c strnlen.c
  32. endif
  33. endif
  34. libmystrings_a_SOURCES = @CHARSET_SRCS@ $(ASRCS) $(CSRCS)
  35. noinst_PROGRAMS = conf_to_src
  36. # Default charset definitions
  37. EXTRA_DIST = ctype-big5.c ctype-czech.c ctype-euc_kr.c 
  38.                         ctype-gb2312.c ctype-gbk.c ctype-sjis.c 
  39.                         ctype-tis620.c ctype-ujis.c 
  40.                         ctype_autoconf.c 
  41.                         strto.c strings-x86.s longlong2str-x86.s 
  42. strxmov.c bmove_upp.c strappend.c strcont.c strend.c 
  43. strfill.c strcend.c is_prefix.c strstr.c strinstr.c 
  44. strmake.c strnmov.c strmov.c strnlen.c 
  45. bmove_upp-sparc.s strappend-sparc.s strend-sparc.s 
  46. strinstr-sparc.s strmake-sparc.s strmov-sparc.s 
  47. strnmov-sparc.s strstr-sparc.s strxmov-sparc.s
  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. libmystrings_a_LIBADD= @CHARSET_OBJS@
  57. ctype.o: ctype_extra_sources.c
  58. ctype_extra_sources.c: conf_to_src
  59. ./conf_to_src $(top_srcdir) @CHARSETS_NEED_SOURCE@ > 
  60.               $(srcdir)/ctype_extra_sources.c
  61. conf_to_src_SOURCES = conf_to_src.c
  62. conf_to_src_LDADD=
  63. # This is because the dependency tracking misses @FOO@ vars in sources.
  64. strtoull.o: @CHARSET_OBJS@
  65. clean-local:
  66. rm -f ctype_extra_sources.c
  67. if ASSEMBLER
  68. # On Linux gcc can compile the assembly files
  69. %.o : %.s
  70. $(AS) -o $@ $<
  71. endif
  72. # Don't update the files from bitkeeper
  73. %::SCCS/s.%