diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-08-03 16:12:24 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-08-03 16:12:24 -0400 |
commit | 03988580e6a306a8be2cfa40a7a75927a009bf44 (patch) | |
tree | 6569e90ff1817f8040f1fdd5d3879cc3add347a7 | |
parent | e9293da11f685d17e2002bb06f0fd756845dadfd (diff) | |
download | moog-03988580e6a306a8be2cfa40a7a75927a009bf44.tar.gz |
Force REAL8
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,4 @@ # makefile for MOOG with all of the common block assignments; -# this is for my Mac laptop # here are the object files OBJECTS = Abfind.o Abpop.o Abunplot.o Batom.o Begin.o Binary.o \ @@ -34,7 +33,7 @@ X11LIB = /usr/X11/lib SMLIB = /usr/local/lib FC = gfortran -FFLAGS = -std=legacy -w -ff2c +FFLAGS = -w -ff2c -fdefault-double-8 -fdefault-real-8 LDFLAGS = -L$(X11LIB) -lX11 -ltcl -ltk -L$(SMLIB) -lplotsub -ldevices -lutils # here are the compilation and linking commands |