My first MPI code
parent
95e6376036
commit
ff4397cc05
@ -0,0 +1,7 @@
|
|||||||
|
MPICC = mpicc
|
||||||
|
CFLAGS += -g
|
||||||
|
all: example
|
||||||
|
example: example.c
|
||||||
|
$(MPICC) $(CFLAGS) $(LDFLAGS) $? $(LDLIBS) -o $@
|
||||||
|
clean:
|
||||||
|
rm -f example
|
||||||
Loading…
Reference in New Issue