##### User configurable options #####

CC          = /usr/bin/mpiCC
OPTFLAGS    = 
#OPTFLAGS    = -L/usr/lib64/openmpi 
#

### End User configurable options ###

CFLAGS	  = $(OPTFLAGS) 

sample: sample.o
	$(CC) $(OPTFLAGS) -o sample sample.o -lm

clean:
	/bin/rm -f *.o *~ sample
.c.o:
	$(CC) $(CFLAGS) -c $*.c
