27 lines
616 B
Makefile
27 lines
616 B
Makefile
# Makefile MAKEFILE_unix_trimsp.
|
|
#
|
|
# 17-Jun-2002 TP, use standard f77 code; use
|
|
# ranlux random number generator of the CERN mathlib
|
|
#
|
|
# 4-Feb-2013 ZS, clean up makefile and include random number
|
|
# generator in the code. Use gfortran which is now
|
|
# a standard part of gcc in moder systems.
|
|
#
|
|
FC=gfortran
|
|
#DEBUG = -g -O
|
|
DEBUG =
|
|
#WARN= -Wall -W
|
|
WARN=
|
|
#DIALECT = -fno-backslash -fno-automatic -finit-local-zero
|
|
#DIALECT = -finit-local-zero
|
|
DIALECT =
|
|
OPS=-c $(DIALECT) $(WARN) $(DEBUG)
|
|
|
|
all : trimsp7l
|
|
|
|
trimsp7l : trimsp7l.F
|
|
$(FC) -o $(HOME)/bin/$@ $<
|
|
|
|
clean:
|
|
rm -f *.o *~ \#* .#*
|