1
1
openmpi/orte/test/mpi/spawn-problem/Makefile
2015-02-11 07:33:56 -08:00

17 строки
174 B
Makefile

CC=mpicc
all: start ch_rec
start:start.o
$(CC) -o start start.o
ch_rec: ch_rec.o
$(CC) -o ch_rec ch_rec.o
clean:
rm -f *.o ch_rec start
run:
mpirun -np 1 start