=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/include/Attic/Risa.tmpl,v retrieving revision 1.13 retrieving revision 1.31 diff -u -p -r1.13 -r1.31 --- OpenXM_contrib2/asir2000/include/Attic/Risa.tmpl 2000/12/05 01:24:53 1.13 +++ OpenXM_contrib2/asir2000/include/Attic/Risa.tmpl 2001/12/25 02:39:03 1.31 @@ -2,7 +2,7 @@ * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED * All rights reserved. * - * $OpenXM: OpenXM_contrib2/asir2000/include/Risa.tmpl,v 1.12 2000/08/22 01:30:25 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/include/Risa.tmpl,v 1.30 2001/10/30 01:09:46 noro Exp $ */ #include "config.h" @@ -10,6 +10,9 @@ /* #define USE_MPI */ /* #define USE_FFT_FLOAT */ /* #define USE_LAPACK */ +/* #define USE_FEP */ +/* #undef OpenXM_HOME */ +/* #define USE_INTERVAL */ #if defined(LinuxArchitecture) #if LinuxCLibMajorVersion >= 6 || \ @@ -22,7 +25,7 @@ EXTRA_LDOPTIONS=-static #endif #endif -#if defined(AlphaArchitecture) +#if defined(AlphaArchitecture) || defined(DarwinArchitecture) #undef USE_GCC #endif @@ -45,14 +48,14 @@ CC= gcc CC= cc #endif -CDEBUGFLAGS= -O +CDEBUGFLAGS= -g -O #if defined(SunArchitecture) #if SystemV4 #if defined(SparcArchitecture) -CDEBUGFLAGS= -O -mv8 +CDEBUGFLAGS= -g -O -mv8 #else -CDEBUGFLAGS= -O +CDEBUGFLAGS= -g -O #endif CCOPTIONS = -DSYSV -DSVR4 AR=/usr/ccs/bin/ar cqs @@ -81,16 +84,29 @@ CC= cc -Wl,-D -Wl,$(HEAP_START_ADDR) #endif #if defined(AlphaArchitecture) +CCOPTIONS = PARIFLAGS = -DLONG_IS_64BIT #else PARIFLAGS = -DLONG_IS_32BIT #endif +#if defined(DarwinArchitecture) +CCOPTIONS = +#endif + +#if defined(AIXArchitecture) +CC = cc -qchars=signed +#endif + #ifdef USE_PARI PARI=1 PARIINC = $(ROOTDIR)/include/pari -PARILIB = $(ROOTDIR)/lib/libpari.a +#if defined(OpenXM_HOME) +PARILIB = $(ROOTDIR)/lib/lib$(LIBPARI).a #else +PARILIB = -L/usr/local/lib -l$(LIBPARI) +#endif +#else PARI=0 PARIINC = . PARILIB = @@ -126,9 +142,29 @@ MPILIB= MPIINC=. #endif +#ifdef USE_FEP +FEP=1 +#if defined(OpenXM_HOME) +FEPLIB= $(ROOTDIR)/lib/libreadline.a +#else +FEPLIB = -lreadline -ltermcap +#endif +#else +FEP=0 +FEPLIB = +#endif + + #if !defined(NullParameter) #define NullParameter #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) -DEFINES= -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)