8bec270f90
Added another system-level test function for ORTE that just spins until terminated by a ctrl-c signal. Modified orterun - added a couple of newlines to the output when abnormally terminating so the prompt always is on a new line. This commit was SVN r10866.
15 строки
203 B
Makefile
15 строки
203 B
Makefile
PROGS = no_op mpi_no_op hello hello_null sigusr_trap hello_nodename spin
|
|
|
|
all: $(PROGS)
|
|
|
|
CC = mpicc
|
|
CFLAGS = -g
|
|
CXX = mpic++
|
|
CXXFLAGS = -g
|
|
F77 = mpif77
|
|
FC = mpif77
|
|
FFLAGS = -g
|
|
|
|
clean:
|
|
rm -f $(PROGS) *~
|