Skip to content
Snippets Groups Projects

add 01 MSA hello-world

Merged Sebastian Achilles requested to merge sa-hello-world into main
1 unresolved thread
Files
6
+ 14
0
SYS:=none
_SYS=$(addprefix .,$(SYS))
MPICC=mpicc
EXECS=mpi_hello_world$(_SYS).out
.PHONY: all clean
all: ${EXECS}
mpi_hello_world$(_SYS).out: mpi_hello_world.c
${MPICC} -o $@ $<
clean:
rm ${EXECS} *.out || true
Loading