# Copyright (C) 2007 Platform Computing Inc # # This program is free software; you can redistribute it and/or modify # it under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA # # $Id$ # TOPDIR = $(PWD)/.. # # Prerequisites: # # Binaries are provided in the SVN tree # # * mpich1-ethernet-gnu # * mvapich1-infiniband-gnu # SRCDIRS = \ mpich2-ethernet-gnu \ mvapich2-infiniband-gnu \ atlas \ openmpi-interconnects-gnu \ blacs-mpich1-gnu \ blacs-mvapich1-gnu \ blacs-openmpi-gnu \ scalapack-mpich1-gnu \ scalapack-mvapich1-gnu \ scalapack-openmpi-gnu \ hdf5 \ hdf5-mpich1-gnu \ hdf5-openmpi-gnu \ linpack-mpich1-gnu \ linpack-openmpi-gnu \ linpack-mvapich1-gnu \ blcr \ netcdf \ compat-hdf5 \ mpich1-ethernet-gnu \ mvapich1-infiniband-gnu \ fftw3 \ bonnie++ \ iozone \ iperf default: all all: @for i in $(SRCDIRS) ; do \ (cd $$i; make $@) ; \ done @(cd hpc-source; make all); clean: @for i in $(SRCDIRS) ; do \ (cd $$i; make $@) ; \ done