1 Star 0 Fork 0

overabel / DBProxy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile.am 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
rj03hou 提交于 2016-12-28 18:20 . Hello world, DBProxy.
SUBDIRS = src lib plugins examples m4 script
EXTRA_DIST = \
Doxyfile \
COPYING.lfs \
README.md \
README.TESTS \
autogen.sh \
mysql-proxy.spec \
doxygen-scripts
ACLOCAL_AMFLAGS = -I m4
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = mysql-proxy.pc mysql-chassis.pc
$(pkgconfig_DATA): config.status
dist-hook:
rm -rf `find $(distdir) -type d -name .bzr -print`
## very basic documentation targets, there's no check for doxygen and related tools yet
docs:
@cd $(top_srcdir) ; \
(cat Doxyfile ; echo PROJECT_NUMBER=$(PACKAGE_VERSION)) | doxygen - ; \
cd $(top_builddir)
## pull out some bzr information from the current branch and set the documentation's project number accordingly
docs-bzr:
@cd $(top_srcdir) ; \
(cat Doxyfile ; echo PROJECT_NUMBER=`sh doxygen-scripts/project_number_bzr.sh $(PACKAGE_VERSION)`) | doxygen - ; \
cd $(top_builddir)
## this check is in the toplevel Makefile intentionally,
## to catch the case when Lua is statically linked more than once
## TODO: How do I wrestle the platform's shared library extension from automake's dead hands?
## And why does libtool generate .so files on OS X?
installcheck-local:
if test `find $(DESTDIR)$(libdir) \( -name "*.so" -or -name "*.dylib" \) -and -type f | xargs nm -A -P | grep "_lua_gc T" | wc -l` -gt 1 ; then \
echo "ERROR: multiple libraries export Lua library symbols. Do not statically link against Lua more than once!"; \
echo "The following libraries contain Lua symbols:"; \
find $(DESTDIR)$(libdir) -name "*.so" -or -name "*.dylib" -and -type f | xargs nm -A -P | grep "_lua_gc T" | cut -f 1 -d: ; \
exit 1 ; \
else:; fi
1
https://gitee.com/overabel/DBProxy.git
git@gitee.com:overabel/DBProxy.git
overabel
DBProxy
DBProxy
master

搜索帮助