Makefile.am revision 273562
172445Sassar#
257416Smarkm# Copyright 2014, Juniper Networks, Inc.
372445Sassar# All rights reserved.
457416Smarkm# This SOFTWARE is licensed under the LICENSE provided in the
557416Smarkm# ../Copyright file. By downloading, installing, copying, or otherwise
657416Smarkm# using the SOFTWARE, you agree to be bound by the terms of that
757416Smarkm# LICENSE.
857416Smarkm
957416SmarkmSUBDIRS=core xo
1057416Smarkm
1157416Smarkmtest tests:
1257416Smarkm	@(cur=`pwd` ; for dir in $(SUBDIRS) ; do \
1357416Smarkm		cd $$dir ; \
1457416Smarkm		$(MAKE) tests ; \
1557416Smarkm		cd $$cur ; \
1657416Smarkm	done)
1757416Smarkm
1857416Smarkmaccept:
1957416Smarkm	@(cur=`pwd` ; for dir in $(SUBDIRS) ; do \
2057416Smarkm		cd $$dir ; \
2157416Smarkm		$(MAKE) accept ; \
2257416Smarkm		cd $$cur ; \
2357416Smarkm	done)
2457416Smarkm
2557416Smarkmvalgrind:
2657416Smarkm	@echo '## Running the regression tests under Valgrind'
2757416Smarkm	@echo '## Go get a cup of coffee it is gonna take a while ...'
2857416Smarkm	${MAKE} VALGRIND='valgrind -q' tests
2957416Smarkm