726e92e3c5
with Open MPI. Sill need to finalize on the Makefile so this gets included in distribution. Reviewed by: Jeff Squyres This commit was SVN r11151.
25 строки
339 B
Makefile
25 строки
339 B
Makefile
#
|
|
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
|
# Use is subject to license terms.
|
|
#
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
|
|
BINS = mpicommleak
|
|
|
|
all: $(BINS)
|
|
|
|
mpicommleak: mpicommleak.c
|
|
mpicc mpicommleak.c -o mpicommleak
|
|
|
|
clean:
|
|
/bin/rm -f *.o
|
|
|
|
clobber:
|
|
/bin/rm -f $(BINS) *.o
|