/[MITgcm]/MITgcm/optim/Makefile
ViewVC logotype

Contents of /MITgcm/optim/Makefile

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.9 - (show annotations) (download)
Fri Jan 6 09:39:08 2012 UTC (12 years, 3 months ago) by mlosch
Branch: MAIN
CVS Tags: checkpoint64, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint64a, checkpoint64c, checkpoint64b
Changes since 1.8: +3 -1 lines
force make to first make "small f files" by introducing new target small_f

1
2 #***********************************************************************
3 # Makefile for the ECCO off-line large scale optimization.
4 #
5 # started: Patrick Heimbach heimbach@mit.edu 19-Jun-2000
6 #
7 # changed:
8 #
9 #***********************************************************************
10
11 # The optimization routines.
12 SRC = optim_main.F \
13 optim_sub.F \
14 optim_numbmod.F \
15 optim_initmod.F \
16 optim_readdata.F \
17 optim_writedata.F \
18 optim_write_control.F \
19 xerbla.F \
20 simul.F
21
22 EXEDIR = ./
23
24 # Location of cpp preprocessor
25 # default is (Linux)
26 CPP = cat $< | /lib/cpp -P -traditional
27 # on SUNOS
28 # CPP = cat $< | /usr/ccs/lib/cpp
29
30 INCLUDEDIRS = -I. \
31 -I../verification/natl_box_adjoint/build/
32
33 LIBDIRS = -L. \
34 -L../lsopt/
35
36 LIBS = -llsopt_ecco \
37 -lblas1
38
39 # OPTMODE is either equal to OFFLINE or ONLINE
40 OPTMODE = OFFLINE
41 EXECUTABLE = $(EXEDIR)optim.x
42
43 # The cpp flags.
44 CPPFLAGS = -DREAL_BYTE=4 \
45 -DMAX_INDEPEND=1000000 \
46 -D_RL='double precision' \
47 -D_RS='double precision' \
48 -D$(OPTMODE)
49
50 # -DMAX_INDEPEND=293570968 \
51 # FORTRAN compiler and its flags.
52 # default is (Linux)
53 FC = f77
54
55 # ifort compilers
56 #FC = ifort
57 #FFLAGS = -mp -132 -r8 -i4 -w95 -W0 -WB -CB -fpe0 -traceback -convert big_endian -assume byterecl
58
59 # SGI o3k IRIX64
60 #FC = f77
61 #FFLAGS = -extend_source -bytereclen -mips4 -r8 -static
62
63 # AER cluster
64 #FC = /opt/mpich/bin/mpif77
65 #FFLAGS = -byteswapio -r8 -Mnodclchk -Mextend
66
67 # File removal.
68 RM = rm -f
69
70 SMALLF = $(SRC:.F=.f)
71 OBJECTS = $(SRC:.F=.o)
72
73 .SUFFIXES: .o .f .F
74
75 all: small_f $(EXECUTABLE)
76 $(EXECUTABLE): $(OBJECTS)
77 $(FC) -o $@ $(FFLAGS) $(OBJECTS) $(LIBDIRS) $(LIBS)
78
79 small_f: $(SMALLF)
80
81 depend:
82 makedepend -o .f $(INCLUDEDIRS) $(SRC)
83
84 # The normal chain of rules is ( .F - .f - .o )
85 .F.f:
86 $(CPP) $(CPPFLAGS) $(INCLUDEDIRS) > $@
87 xerbla.f: xerbla.F
88 $(CPP) $(INCLUDEDIRS) > $@
89 .f.o:
90 $(FC) $(FFLAGS) -c $<
91
92 # Cleaning options.
93 clean:
94 $(RM) $(EXEDIR)optim.x *.o *.f
95
96 scratch:
97 $(RM) OPWARMD OPWARMI $(EXEDIR)optim.x $(OBJ)
98
99 # DO NOT DELETE
100

  ViewVC Help
Powered by ViewVC 1.1.22