99f2986db7
We still have an issue with the io forwarding going through the spawning process, but that will be dealt with at a future time. This commit was SVN r11943.
15 строки
200 B
Makefile
15 строки
200 B
Makefile
PROGS = mpi_no_op hello hello_nodename abort multi_abort simple_spawn
|
|
|
|
all: $(PROGS)
|
|
|
|
CC = mpicc
|
|
CFLAGS = -g
|
|
CXX = mpic++
|
|
CXXFLAGS = -g
|
|
F77 = mpif77
|
|
FC = mpif77
|
|
FFLAGS = -g
|
|
|
|
clean:
|
|
rm -f $(PROGS) *~
|