12345678910111213141516171819 |
- #This is for a DEC Alpha 8400. The code will execute on a
- #single processor
- #Warning: parallel make does not work properly in general
- MPIF77 = f77
- FLINK = f77
- #Optimization -O5 breaks SP; works fine for all other codes
- FFLAGS = -O4
- MPICC = cc
- CLINK = cc
- CFLAGS = -O5
- include ../config/make.dummy
- CC = cc -g
- BINDIR = ../bin
- RAND = randi8
|