1## Process this file with automake to produce Makefile.in
2
3SUBDIRS=common functions math sets strings dynamic date
4
5test tests:
6	@(cur=`pwd` ; for dir in $(SUBDIRS) ; do cd $$dir ; $(MAKE) CHECKER='$(CHECKER)' tests ; cd $$cur ; done)
7
8valgrind:
9	@echo '## Running the regression tests under Valgrind'
10	$(MAKE) CHECKER='valgrind -q' tests
11
12