~ubuntu-branches/ubuntu/lucid/mumps/lucid

« back to all changes in this revision

Viewing changes to Make.inc/Makefile.G95.PAR

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV
  • Date: 2009-12-07 17:56:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091207175651-ftogh061hebcqzty
Tags: 4.9.2.dfsg-1
* New upstream release (closes: #554159).
* Changed -lblas to -lblas-3gf in Makefile.*.inc (closes: #557699).
* Linking tests to shared instead of static libs (closes: #555759).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
#  This file is part of MUMPS 4.8.4, built on Mon Dec 15 15:31:38 UTC 2008
 
2
#  This file is part of MUMPS 4.9.2, built on Thu Nov  5 07:05:08 UTC 2009
3
3
#
4
4
#Begin orderings
5
5
 
15
15
#          4/ Compile and install MUMPS
16
16
#             make clean; make   (to clean up previous installation)
17
17
#
18
 
#          Metis is now available as an internal ordering for MUMPS.
 
18
#          Metis/ParMetis and SCOTCH/PT-SCOTCH (ver 5.1 and later) orderings are now available for MUMPS.
19
19
#
20
20
 
21
 
#LSCOTCHDIR = ${HOME}/scotch_5.0_esmumps/lib
22
 
#LSCOTCH   = -L$(LSCOTCHDIR) -lesmumps -lfax -lsymbol -ldof -lorder -lgraph -lscotch -lscotcherr -lcommon #-lm
 
21
#SCOTCHDIR  = ${HOME}/scotch_5.1_esmumps
 
22
#ISCOTCH    = -I$(SCOTCHDIR)/include 
 
23
# You have to choose one among the following two lines depending on
 
24
# the type of analysis you want to perform. If you want to perform only
 
25
# sequential analysis choose the first (remember to add -Dscotch in the ORDERINGSF
 
26
# variable below); for both parallel and sequential analysis choose the second 
 
27
# line (remember to add -Dptscotch in the ORDERINGSF variable below)
 
28
 
 
29
#LSCOTCH    = -L$(SCOTCHDIR)/lib -lesmumps -lscotch -lscotcherr
 
30
#LSCOTCH    = -L$(SCOTCHDIR)/lib -lptesmumps -lptscotch -lptscotcherr
 
31
 
23
32
 
24
33
LPORDDIR = $(topdir)/PORD/lib/
25
34
IPORD    = -I$(topdir)/PORD/include/
27
36
 
28
37
#LMETISDIR = /local/metis/
29
38
#IMETIS    = # Metis doesn't need include files (Fortran interface avail.)
 
39
 
 
40
# You have to choose one among the following two lines depending on
 
41
# the type of analysis you want to perform. If you want to perform only
 
42
# sequential analysis choose the first (remember to add -Dmetis in the ORDERINGSF
 
43
# variable below); for both parallel and sequential analysis choose the second 
 
44
# line (remember to add -Dparmetis in the ORDERINGSF variable below)
 
45
 
30
46
#LMETIS    = -L$(LMETISDIR) -lmetis
 
47
#LMETIS    = -L$(LMETISDIR) -lparmetis -lmetis
31
48
 
32
49
# The following variables will be used in the compilation process.
33
 
#ORDERINGSF = -Dscotch -Dmetis -Dpord
 
50
# Please note that -Dptscotch and -Dparmetis imply -Dscotch and -Dmetis respectively.
 
51
#ORDERINGSF = -Dscotch -Dmetis -Dpord -Dptscotch -Dparmetis
34
52
ORDERINGSF  = -Dpord
35
53
ORDERINGSC  = $(ORDERINGSF)
 
54
 
36
55
LORDERINGS = $(LMETIS) $(LPORD) $(LSCOTCH)
37
 
IORDERINGS = $(IMETIS) $(IPORD) $(ISCOTCH)
 
56
IORDERINGSF = $(ISCOTCH)
 
57
IORDERINGSC = $(IMETIS) $(IPORD) $(ISCOTCH)
38
58
 
39
59
#End orderings
40
60
########################################################################