
Every test/makefile have the following targets: cleantests - clean local and subdirectories' tests buildtests - build all local and subdirectories' tests runtests - run all local tests testall - clean, build and run local and subdirectories' tests Tests for directory random_dir are always in its subdirectory, in this case in random_dir/test . If random_dir has subdirectories with tests, random_dir/child_dir, for example, tests of child_dir can be started from random_dir/test/makefile where make -C child_dir/test <test target> is called. See MAXSCALE_HOME/test/README for further information.
74 lines
2.5 KiB
Makefile
74 lines
2.5 KiB
Makefile
# This file is distributed as part of the SkySQL Gateway. It 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,
|
|
# version 2.
|
|
#
|
|
# 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., 51
|
|
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
#
|
|
# Copyright SkySQL Ab 2013
|
|
#
|
|
# Revision History
|
|
# Date Who Description
|
|
# 14/06/13 Mark Riddoch Initial implementation
|
|
# 17/06/13 Mark Riddoch Addition of documentation and depend
|
|
# targets
|
|
# 18/06/13 Mark Riddoch Addition of install target
|
|
# 21/06/13 Mark Riddoch Addition of inih
|
|
# 08/07/13 Mark Riddoch Addition of monitor modules
|
|
# 16/07/13 Mark Riddoch Renamed things to match the new naming
|
|
|
|
DEST=$(HOME)/usr/local/skysql
|
|
|
|
all:
|
|
(cd inih/extra ; make -f Makefile.static)
|
|
(cd core ; touch depend.mk ; make)
|
|
(cd modules/routing; touch depend.mk ;make)
|
|
(cd modules/routing/readwritesplit; touch depend.mk ;make)
|
|
(cd modules/protocol; touch depend.mk ;make)
|
|
(cd modules/monitor; touch depend.mk ;make)
|
|
|
|
cleantests:
|
|
$(MAKE) -C test cleantests
|
|
|
|
buildtests:
|
|
$(MAKE) -C test HAVE_SRV=$(HAVE_SRV) buildtests
|
|
|
|
testall:
|
|
$(MAKE) -C test HAVE_SRV=$(HAVE_SRV) testall
|
|
|
|
clean:
|
|
(cd Documentation; rm -rf html)
|
|
(cd core; touch depend.mk ; make clean)
|
|
(cd modules/routing; touch depend.mk ; make clean)
|
|
(cd modules/protocol; touch depend.mk ; make clean)
|
|
(cd modules/monitor; touch depend.mk ; make clean)
|
|
|
|
depend:
|
|
(cd core; touch depend.mk ; make depend)
|
|
(cd modules/routing; touch depend.mk ; make depend)
|
|
(cd modules/protocol; touch depend.mk ; make depend)
|
|
(cd modules/monitor; touch depend.mk ; make depend)
|
|
|
|
install:
|
|
@mkdir -p $(DEST)
|
|
@mkdir -p $(DEST)/MaxScale
|
|
@mkdir -p $(DEST)/MaxScale/modules
|
|
@mkdir -p $(DEST)/MaxScale/log
|
|
@mkdir -p $(DEST)/MaxScale/etc
|
|
@mkdir -p $(DEST)/MaxScale/mysql
|
|
@mkdir -p $(DEST)/lib
|
|
@mkdir -p $(DEST)/Documentation
|
|
install -b MaxScale_template.cnf $(DEST)/MaxScale/etc
|
|
install ../Documentation/*.pdf $(DEST)/Documentation
|
|
(cd core; make DEST=$(DEST) install)
|
|
(cd modules/routing; make DEST=$(DEST) install)
|
|
(cd modules/protocol; make DEST=$(DEST) install)
|
|
(cd modules/monitor; make DEST=$(DEST) install)
|