version 1.1.1.1, 1999/12/03 07:39:11 |
version 1.2, 2003/02/14 22:29:13 |
|
|
/* $OpenXM: OpenXM/src/asir99/include/Risa.tmpl-alpha,v 1.1.1.1 1999/11/10 08:12:30 noro Exp $ */ |
/* $OpenXM: OpenXM_contrib2/asir2000/include/Risa.tmpl-alpha,v 1.1.1.1 1999/12/03 07:39:11 noro Exp $ */ |
/* #define USE_GCC */ |
/* #define USE_GCC */ |
#define USE_PARI |
#define USE_PARI |
#define USE_PLOT |
#define USE_PLOT |
Line 33 CC= cc -Wl,-D -Wl,$(HEAP_START_ADDR) |
|
Line 33 CC= cc -Wl,-D -Wl,$(HEAP_START_ADDR) |
|
REMOTE=1 |
REMOTE=1 |
|
|
#ifdef USE_PARI |
#ifdef USE_PARI |
PARI=1 |
PARI= -DPARI |
PARIINC = /usr/local/include/pari |
PARIINC = -I/usr/local/include/pari |
#if 0 |
#if 0 |
PARIFLAGS = -DLONG_IS_32BIT -DULONG_NOT_DEFINED |
PARIFLAGS = -DLONG_IS_32BIT -DULONG_NOT_DEFINED |
#endif |
#endif |
PARIFLAGS = -DLONG_IS_64BIT |
PARIFLAGS = -DLONG_IS_64BIT |
PARILIB = -lpari |
PARILIB = -lpari |
#else |
#else |
PARI=0 |
PARI= |
PARIINC = . |
PARIINC = |
PARIFLAGS = |
PARIFLAGS = |
PARILIB = |
PARILIB = |
#endif |
#endif |
|
|
#ifdef USE_PLOT |
#ifdef USE_PLOT |
DO_PLOT=1 |
DO_PLOT= -DDO_PLOT |
#else |
#else |
DO_PLOT=0 |
DO_PLOT= |
#endif |
#endif |
|
|
#ifdef USE_READLINE |
#ifdef USE_READLINE |
|
|
#define NullParameter |
#define NullParameter |
#endif |
#endif |
|
|
INCLUDES= -I$(TOP)/include -I$(TOP)/parse -I$(TOP)/io -I$(PARIINC) |
INCLUDES= -I$(TOP)/include -I$(TOP)/parse -I$(TOP)/io $(PARIINC) |
DEFINES= -DPARI=$(PARI) -DDO_PLOT=$(DO_PLOT) -DREADLINE=$(READLINE) -DREMOTE=$(REMOTE) $(PARIFLAGS) |
DEFINES= $(PARI) $(DO_PLOT) -DREADLINE=$(READLINE) -DREMOTE=$(REMOTE) $(PARIFLAGS) |