
Note that some compile warnings are generated here because of the direct inclusion of an orte include file in the program. Not entirely sure why that is happening (it is relatively new phenomenon), but it doesn't cause any problems in terms of operation. This commit was SVN r11175.
15 строки
217 B
Makefile
15 строки
217 B
Makefile
PROGS = no_op mpi_no_op hello hello_null sigusr_trap hello_nodename spin orte_nodename
|
|
|
|
all: $(PROGS)
|
|
|
|
CC = mpicc
|
|
CFLAGS = -g
|
|
CXX = mpic++
|
|
CXXFLAGS = -g
|
|
F77 = mpif77
|
|
FC = mpif77
|
|
FFLAGS = -g
|
|
|
|
clean:
|
|
rm -f $(PROGS) *~
|