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