ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/mpiBASS/Makefile
Revision: 180
Committed: Tue Nov 19 19:57:06 2002 UTC (21 years, 7 months ago) by mmeineke
File size: 371 byte(s)
Log Message:
This commit was generated by cvs2svn to compensate for changes in r179,
which included commits to RCS files with non-trunk default branches.

File Contents

# Content
1 CCPLUS=mpiCC
2 #CCPLUS=/usr/local/bin/gcc
3 FC=mpif90
4 CFLAGS= -I/usr/local/include
5
6 HEADER_DIR=$(HOME)/inc
7 BIN_DIR=$(HOME)/bin
8 LIB_DIR=$(HOME)/lib
9
10
11 all: $(BIN_DIR)/mpiBASS
12
13 clean:
14 rm *.o *~ $(BIN_DIR)/mpiBASS
15
16 $(BIN_DIR)/mpiBASS: mpiBASS.o $(LIB_DIR)/libMPImdtools.a
17 $(FC) -o $@ -L$(LIB_DIR) ./mpiBASS.o -lMPImdtools -lm
18
19 mpiBASS.o: mpiBASS.cpp
20 $(CCPLUS) -c $(CFLAGS) $?