makefile.am

来自「这是linux下运行的mysql软件包,可用于linux 下安装 php + m」· AM 代码 · 共 54 行

AM
54
字号
# Copyright (C) 2000 MySQL AB# # This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.# # This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# # You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USAnoinst_PROGRAMS = mysqlbin_PROGRAMS    = mysqltest_embedded mysql_client_test_embeddedclient_sources  = $(mysqltest_embedded_SOURCES) $(mysql_SOURCES)tests_sources   = $(mysql_client_test_embedded_SOURCES)CLEANFILES      = $(client_sources) $(tests_sources)link_sources:	set -x; \	for f in $(client_sources); do \	  rm -f $$f; \	  @LN_CP_F@ $(top_srcdir)/client/$$f $$f; \	done; \	for f in $(tests_sources); do \	  rm -f $$f; \	  @LN_CP_F@ $(top_srcdir)/tests/$$f $$f; \	doneDEFS = 		-DEMBEDDED_LIBRARYINCLUDES =	-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir) \		-I$(top_srcdir) -I$(top_srcdir)/client -I$(top_srcdir)/regex \		$(openssl_includes) $(yassl_includes)LIBS =		@LIBS@ @WRAPLIBS@ @CLIENT_LIBS@ $(yassl_libs)LDADD =		@CLIENT_EXTRA_LDFLAGS@ ../libmysqld.a @innodb_system_libs@ @LIBDL@ $(CXXLDFLAGS)mysqltest_embedded_LINK = $(CXXLINK)mysqltest_embedded_SOURCES =	mysqltest.cmysqltest_embedded_LDADD =	$(LDADD) $(top_builddir)/regex/libregex.amysql_SOURCES = mysql.cc readline.cc completion_hash.cc \                my_readline.h sql_string.h completion_hash.hmysql_LDADD = @readline_link@ @TERMCAP_LIB@ $(LDADD)mysql_client_test_embedded_LINK = $(CXXLINK)mysql_client_test_embedded_SOURCES = mysql_client_test.c# Don't update the files from bitkeeper%::SCCS/s.%

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?