Last change
on this file since 2051 was
2051,
checked in by jack, 19 years ago
|
Python interface to metis. Currently provides only the
METIS_PartMeshNodal function, since that is what is currently needed for partitioning.
Module name is metis.
|
File size:
314 bytes
|
Rev | Line | |
---|
[2051] | 1 | |
---|
| 2 | # Which compiler to use |
---|
| 3 | CC = cc |
---|
| 4 | |
---|
| 5 | # What optimization level to use |
---|
| 6 | OPTFLAGS = -O2 |
---|
| 7 | |
---|
| 8 | # What options to be used by the compiler |
---|
| 9 | COPTIONS = |
---|
| 10 | |
---|
| 11 | # What options to be used by the loader |
---|
| 12 | LDOPTIONS = |
---|
| 13 | |
---|
| 14 | # What archiving to use |
---|
| 15 | AR = ar rv |
---|
| 16 | |
---|
| 17 | # What to use for indexing the archive |
---|
| 18 | RANLIB = ranlib |
---|
| 19 | #RANLIB = ar -ts |
---|
| 20 | #RANLIB = |
---|
| 21 | |
---|
| 22 | |
---|
Note: See
TracBrowser
for help on using the repository browser.