source: anuga_core/source/pypar-numeric/contrib/Makefile @ 5779

Last change on this file since 5779 was 5779, checked in by steve, 16 years ago

Added the old version of pypar which works with Numeric. Necessary for parallel code until we move anuga to numpy (and then we can use pypar as distribute via sourceforge).

File size: 523 bytes
Line 
1#####################################
2# Compilation of C extension mpi.c  #
3# for use with pypar                #
4#                                   #
5# Ole Nielsen, Jan 2002             #
6#####################################
7
8CC          =   mpicc #MPI C compiler
9
10
11### Dependencies ###
12#
13default: mpi.so
14
15mpi.so: mpi.c Makefile install.py
16        python install.py
17
18ctiming: ctiming.c Makefile
19        $(CC) ctiming.c -o ctiming
20
21clean:
22        rm -f *.o so_locations *~ runpytiming.o* runpytiming.e*
23
24veryclean: clean
25        rm -f *.so *.pyc ctiming
Note: See TracBrowser for help on using the repository browser.