Blame test/Makefile.am

Packit Service c5cf8c
# -*- Mode: Makefile; -*-
Packit Service c5cf8c
# vim: set ft=automake :
Packit Service c5cf8c
#
Packit Service c5cf8c
# (C) 2011 by Argonne National Laboratory.
Packit Service c5cf8c
#     See COPYRIGHT in top-level directory.
Packit Service c5cf8c
#
Packit Service c5cf8c
Packit Service c5cf8c
## FIXME: commented out temporarily, really just want "mpi" to be dealt with at
Packit Service c5cf8c
## distclean time for now
Packit Service c5cf8c
##SUBDIRS = mpi util basic commands .
Packit Service c5cf8c
SUBDIRS = mpi commands .
Packit Service c5cf8c
Packit Service c5cf8c
# Test both the MPI routines and the MPICH command scripts
Packit Service c5cf8c
testing:
Packit Service c5cf8c
	(NOXMLCLOSE=YES && export NOXMLCLOSE && cd mpi && $(MAKE) testing)
Packit Service c5cf8c
	(XMLFILE=../mpi/summary.xml && XMLCONTINUE=YES && \
Packit Service c5cf8c
	export XMLFILE && export XMLCONTINUE && \
Packit Service c5cf8c
	cd commands && $(MAKE) testing)
Packit Service c5cf8c