version 1.1.1.1, 1999/12/03 07:39:11 |
version 1.5, 2000/03/01 02:29:18 |
|
|
/* $OpenXM: OpenXM/src/asir99/include/Risa.tmpl,v 1.1.1.1 1999/11/10 08:12:30 noro Exp $ */ |
/* $OpenXM: OpenXM_contrib2/asir2000/include/Risa.tmpl,v 1.4 2000/02/08 04:47:10 noro Exp $ */ |
|
#include "config.h" |
|
|
#define USE_GCC |
#define USE_GCC |
#define USE_PARI |
|
#define USE_PLOT |
|
#define USE_INET |
#define USE_INET |
/* #define USE_MPI */ |
/* #define USE_MPI */ |
/* #define USE_FFT_FLOAT */ |
/* #define USE_FFT_FLOAT */ |
/* #define USE_LAPACK */ |
/* #define USE_LAPACK */ |
|
|
|
#if defined(LinuxArchitecture) |
|
#if LinuxCLibMajorVersion >= 6 || \ |
|
(LinuxCLibMajorVersion == 5 && LinuxCLibMinorVersion == 99) |
|
STD_CPP_DEFINES = -traditional -Dlinux -D_BSD_SOURCE $(PROJECT_DEFINES) |
|
STD_DEFINES = -Dlinux -D_BSD_SOURCE $(PROJECT_DEFINES) |
|
#endif |
|
#endif |
|
|
#if defined(AlphaArchitecture) |
#if defined(AlphaArchitecture) |
#undef USE_GCC |
#undef USE_GCC |
#endif |
#endif |
|
|
#define SUN4M 1 |
#define SUN4M 1 |
|
|
#include "config.h" |
|
|
|
#if defined(OpenXM_HOME) |
#if defined(OpenXM_HOME) |
ROOTDIR=OpenXM_HOME |
ROOTDIR=OpenXM_HOME |
#else |
#else |
|
|
#endif |
#endif |
|
|
CDEBUGFLAGS= -O6 |
CDEBUGFLAGS= -O6 |
CCOPTIONS= |
|
|
|
#if defined(SparcArchitecture) |
#if defined(SparcArchitecture) |
#if SystemV4 |
#if SystemV4 |
CDEBUGFLAGS= -O6 -mv8 |
CDEBUGFLAGS= -O6 -mv8 |
|
CCOPTIONS = -DSYSV -DSVR4 |
AR=/usr/ccs/bin/ar cqs |
AR=/usr/ccs/bin/ar cqs |
#endif |
#endif |
#if !SystemV4 |
#if !SystemV4 |
Line 59 CC= cc -Wl,-D -Wl,$(HEAP_START_ADDR) |
|
Line 65 CC= cc -Wl,-D -Wl,$(HEAP_START_ADDR) |
|
#endif |
#endif |
#endif |
#endif |
|
|
#ifdef USE_PARI |
|
PARI=1 |
|
#if defined(AlphaArchitecture) |
#if defined(AlphaArchitecture) |
PARIFLAGS = -DLONG_IS_64BIT |
PARIFLAGS = -DLONG_IS_64BIT |
#else |
#else |
PARIFLAGS = -DLONG_IS_32BIT |
PARIFLAGS = -DLONG_IS_32BIT |
#endif |
#endif |
|
|
|
#ifdef USE_PARI |
|
PARI=1 |
PARIINC = $(ROOTDIR)/include/pari |
PARIINC = $(ROOTDIR)/include/pari |
PARILIB = $(ROOTDIR)/lib/libpari.a |
PARILIB = $(ROOTDIR)/lib/libpari.a |
#else |
#else |
PARI=0 |
PARI=0 |
PARIINC = . |
PARIINC = . |
PARIFLAGS = |
|
PARILIB = |
PARILIB = |
#endif |
#endif |
|
|
|
|
#endif |
#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) |
DEFINES= -DINET=$(INET) -DPARI=$(PARI) -DLAPACK=$(LAPACK) -DDO_PLOT=$(DO_PLOT) -DUSE_FLOAT=$(USE_FLOAT) $(PARIFLAGS) -DHMEXT -DMPI=$(MPI) $(LINUX_EXTRA_DEFINES) |