| version 1.7, 2000/03/10 03:05:01 |
version 1.15, 2000/12/22 10:03:29 |
|
|
| /* $OpenXM: OpenXM_contrib2/asir2000/include/Risa.tmpl,v 1.6 2000/03/06 08:24:23 noro Exp $ */ |
/* |
| |
* Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED |
| |
* All rights reserved. |
| |
* |
| |
* $OpenXM: OpenXM_contrib2/asir2000/include/Risa.tmpl,v 1.14 2000/12/21 02:44:16 murao Exp $ |
| |
*/ |
| #include "config.h" |
#include "config.h" |
| |
|
| #define USE_GCC |
#define USE_GCC |
| #define USE_INET |
|
| /* #define USE_MPI */ |
/* #define USE_MPI */ |
| /* #define USE_FFT_FLOAT */ |
/* #define USE_FFT_FLOAT */ |
| /* #define USE_LAPACK */ |
/* #define USE_LAPACK */ |
| |
/* #define USE_FEP */ |
| |
|
| #if defined(LinuxArchitecture) |
#if defined(LinuxArchitecture) |
| #if LinuxCLibMajorVersion >= 6 || \ |
#if LinuxCLibMajorVersion >= 6 || \ |
| (LinuxCLibMajorVersion == 5 && LinuxCLibMinorVersion == 99) |
(LinuxCLibMajorVersion == 5 && LinuxCLibMinorVersion == 99) |
| STD_CPP_DEFINES = -traditional -Dlinux -D_BSD_SOURCE $(PROJECT_DEFINES) |
STD_CPP_DEFINES = -traditional -Dlinux -D_BSD_SOURCE $(PROJECT_DEFINES) |
| STD_DEFINES = -Dlinux -D_BSD_SOURCE $(PROJECT_DEFINES) |
STD_DEFINES = -Dlinux -D_BSD_SOURCE $(PROJECT_DEFINES) |
| |
#if 0 |
| |
EXTRA_LDOPTIONS=-static |
| #endif |
#endif |
| #endif |
#endif |
| |
#endif |
| |
|
| #if defined(AlphaArchitecture) |
#if defined(AlphaArchitecture) |
| #undef USE_GCC |
#undef USE_GCC |
|
|
| CC= cc |
CC= cc |
| #endif |
#endif |
| |
|
| CDEBUGFLAGS= -O6 |
CDEBUGFLAGS= -O2 |
| |
|
| #if defined(SparcArchitecture) |
#if defined(SunArchitecture) |
| #if SystemV4 |
#if SystemV4 |
| CDEBUGFLAGS= -O6 -mv8 |
#if defined(SparcArchitecture) |
| |
CDEBUGFLAGS= -O -mv8 |
| |
#else |
| |
CDEBUGFLAGS= -O |
| |
#endif |
| CCOPTIONS = -DSYSV -DSVR4 |
CCOPTIONS = -DSYSV -DSVR4 |
| AR=/usr/ccs/bin/ar cqs |
AR=/usr/ccs/bin/ar cqs |
| /* ranlib is dummy on Solaris 2. */ |
/* ranlib is dummy on Solaris 2. */ |
| Line 78 PARIFLAGS = -DLONG_IS_32BIT |
|
| Line 90 PARIFLAGS = -DLONG_IS_32BIT |
|
| #ifdef USE_PARI |
#ifdef USE_PARI |
| PARI=1 |
PARI=1 |
| PARIINC = $(ROOTDIR)/include/pari |
PARIINC = $(ROOTDIR)/include/pari |
| |
/* |
| PARILIB = $(ROOTDIR)/lib/libpari.a |
PARILIB = $(ROOTDIR)/lib/libpari.a |
| |
*/ |
| |
PARILIB = -L/usr/local/lib -lpari |
| #else |
#else |
| PARI=0 |
PARI=0 |
| PARIINC = . |
PARIINC = . |
| PARILIB = |
PARILIB = |
| #endif |
#endif |
| |
|
| #ifdef USE_INET |
|
| INET=1 |
|
| #else |
|
| INET=0 |
|
| #endif |
|
| |
|
| #ifdef USE_LAPACK |
#ifdef USE_LAPACK |
| LAPACK=1 |
LAPACK=1 |
| LAPACKLIB = -llapack -lblas -lI77 -lF77 |
LAPACKLIB = -llapack -lblas -lI77 -lF77 |
|
|
| MPIINC=. |
MPIINC=. |
| #endif |
#endif |
| |
|
| |
#ifdef USE_FEP |
| |
FEP=1 |
| |
FEPLIB = -lreadline -ltermcap |
| |
#else |
| |
FEP=0 |
| |
FEPLIB = |
| |
#endif |
| |
|
| |
|
| #if !defined(NullParameter) |
#if !defined(NullParameter) |
| #define NullParameter |
#define NullParameter |
| #endif |
#endif |
| |
|
| |
#ifdef USE_INTERVAL |
| |
INTERVALDEF = -DINTERVAL -DITVDEBUG |
| |
INTERVALDEF = -DINTERVAL |
| |
#else |
| |
INTERVALDEF = |
| |
#endif |
| |
|
| INCLUDES= -I$(TOP)/include -I$(TOP)/parse -I$(TOP)/io -I$(PARIINC) -I$(MPIINC) |
INCLUDES= -I$(TOP)/include -I$(TOP)/parse -I$(TOP)/io -I$(PARIINC) -I$(MPIINC) |
| DEFINES= -DINET=$(INET) -DPARI=$(PARI) -DLAPACK=$(LAPACK) -DDO_PLOT=$(DO_PLOT) -DUSE_FLOAT=$(USE_FLOAT) $(PARIFLAGS) -DHMEXT -DMPI=$(MPI) $(LINUX_EXTRA_DEFINES) |
DEFINES= $(INTERVALDEF) -DINET=$(INET) -DPARI=$(PARI) -DLAPACK=$(LAPACK) -DDO_PLOT=$(DO_PLOT) -DUSE_FLOAT=$(USE_FLOAT) $(PARIFLAGS) -DHMEXT -DMPI=$(MPI) -DFEP=$(FEP) $(LINUX_EXTRA_DEFINES) |