2014-10-23 22:30:14 +00:00
|
|
|
#
|
|
|
|
# Copyright 2014, Juniper Networks, Inc.
|
|
|
|
# All rights reserved.
|
|
|
|
# This SOFTWARE is licensed under the LICENSE provided in the
|
|
|
|
# ../Copyright file. By downloading, installing, copying, or otherwise
|
|
|
|
# using the SOFTWARE, you agree to be bound by the terms of that
|
|
|
|
# LICENSE.
|
|
|
|
|
2015-08-24 16:26:20 +00:00
|
|
|
SUBDIRS = core xo
|
|
|
|
|
|
|
|
if HAVE_GETTEXT
|
|
|
|
SUBDIRS += gettext
|
|
|
|
endif
|
2014-10-23 22:30:14 +00:00
|
|
|
|
|
|
|
test tests:
|
|
|
|
@(cur=`pwd` ; for dir in $(SUBDIRS) ; do \
|
|
|
|
cd $$dir ; \
|
|
|
|
$(MAKE) tests ; \
|
|
|
|
cd $$cur ; \
|
|
|
|
done)
|
|
|
|
|
|
|
|
accept:
|
|
|
|
@(cur=`pwd` ; for dir in $(SUBDIRS) ; do \
|
|
|
|
cd $$dir ; \
|
|
|
|
$(MAKE) accept ; \
|
|
|
|
cd $$cur ; \
|
|
|
|
done)
|
|
|
|
|
|
|
|
valgrind:
|
|
|
|
@echo '## Running the regression tests under Valgrind'
|
|
|
|
@echo '## Go get a cup of coffee it is gonna take a while ...'
|
|
|
|
${MAKE} VALGRIND='valgrind -q' tests
|