/[MITgcm]/MITgcm_contrib/jscott/igsm/src/Makefile
ViewVC logotype

Annotation of /MITgcm_contrib/jscott/igsm/src/Makefile

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


Revision 1.4 - (hide annotations) (download)
Thu Sep 17 15:48:38 2009 UTC (15 years, 10 months ago) by jscott
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +51 -7 lines
new routine for reading in eppa emissions

1 jscott 1.1 ###################################################################
2     ## A makefile for MIT Global Climate and Biogeochemistry Model ##
3     ## --------------------- ##
4     ## Chien Wang, July 31, 1995 ##
5     ## MIT Joint Program for Global Change ##
6     ###################################################################
7    
8     ##
9     ## === Define files
10     ##
11    
12     TARGET = $(LIBDIR)LIBATM.a
13     MAKELIB = TRUE
14     PLATFORM = Linux
15    
16    
17     # --- Source files
18     #JRS removed ocean_rd.F and driver.F
19     FILES = atmosphere.F check_settings.F chemglobal.F chemtemco2.F \
20     comp1.F condse.F daily_new.F daily_ocean.F \
21     drycnv.F eddypa.F fft36.F fltr4tem.F forcedozone.F \
22     forset.F gr_for_3docean.F grland.F grocean.F \
23     hordiff_all.F hordiff.F input.F \
24 jscott 1.4 md2g04.F mesh.F newcon.F obsco2.F robso3.F obssolar.F \
25 jscott 1.1 prland.F surf_ocean.F climate2tem.F zclimate2tem.F \
26     sur4clm.F surf_land.F surf_clm.F gr_clm.F \
27     r95mit.F radia0.F radia_chem.F radia.F \
28 jscott 1.4 radiagso_clm.F readSTAER.F rtgases.F \
29 jscott 1.1 bgrghg.F sdrag.F senint.F sulfut.F surface.F \
30 jscott 1.4 t2m.F tgases.F trends_igsm.F trends_giss.F trvdata.F \
31     vfunct.F vweigav.F eppaemission.F kvcarbon.F \
32     check_lib.F dd2g04.F util.F \
33     wr_rstrt_nem.F rd_rstrt_nem.F
34    
35 jscott 1.2
36 jscott 1.1 INCDIR := ../inc/
37     LIBDIR := ./
38    
39     # --- include files
40     INCFILE1 = $(INCDIR)ctrparam.h
41    
42     ##
43     ## === Compile, link and execute sectio:
44     ##
45    
46     # --- for Digital UNIX
47     ifeq ($(PLATFORM),OSF1)
48     FFLAGS = -O -cpp -I$(INCDIR) -non_shared -om -real_size 64 -integer_size 32
49     FFLAGS2= $(FFLAGS)
50     CC = f90
51     endif
52    
53     # --- for PGI/LINUX
54     ifeq ($(PLATFORM),Linux)
55     #FFLAGS = -I$(INCDIR) -fast -r8 -i4 -Mdalign -Msave
56     ifeq ($(MAKELIB),TRUE)
57     FFLAGS = -I$(INCDIR) -r8 -i4 -c -Mdalign -Msave
58     else
59     FFLAGS = -I$(INCDIR) -r8 -i4 -Mdalign -Msave
60     endif
61 jscott 1.2 CC = pgf90
62 jscott 1.1
63 jscott 1.4 CXX = pgCC
64     FFLAGCC= -I$(INCDIR) -fast
65     LFLAGCC=-lstd -lC -lm -lpgc -lgcc -lc
66    
67     endif
68    
69     #LIBS = $(LIBDIR)GACM64.a
70     #LIBC = $(LIBDIR)LIBCHEM.a
71     #LIBM = $(LIBDIR)LIBMETA.a
72     #LIBCLM = $(LIBDIR)LIBCLM.a
73     #LIBTEM = $(LIBDIR)LIBTEM.a
74     #LIBNCDF= /usr/local/netcdf-3.5.1-beta13/lib/libnetcdf.a
75    
76     ifeq ($(CHEM),TRUE)
77     LIBS:= $(LIBS) $(LIBC)
78     endif
79     ifeq ($(META),TRUE)
80     LIBS:= $(LIBS) $(LIBM)
81     endif
82     ifeq ($(CLM),TRUE)
83     LIBS:= $(LIBS) $(LIBCLM) $(LIBDIR)libesmf.a $(LIBDIR)libmpiuni.a
84     LIBS:= $(LIBS) $(LIBNCDF)
85     endif
86     ifeq ($(TEM),TRUE)
87     LIBS:= $(LIBS) $(LIBTEM)
88 jscott 1.1 endif
89    
90     OBJECT =atmosphere.o check_settings.o chemglobal.o chemtemco2.o \
91     comp1.o condse.o daily_new.o daily_ocean.o \
92     drycnv.o eddypa.o fft36.o fltr4tem.o forcedozone.o \
93     forset.o gr_for_3docean.o grland.o grocean.o \
94     hordiff_all.o hordiff.o input.o \
95 jscott 1.3 md2g04.o mesh.o newcon.o obsco2.o robso3.o obssolar.o \
96 jscott 1.1 prland.o surf_ocean.o climate2tem.o zclimate2tem.o \
97     sur4clm.o surf_land.o surf_clm.o gr_clm.o \
98     r95mit.o radia0.o radia_chem.o radia.o \
99 jscott 1.3 radiagso_clm.o readSTAER.o rtgases.o \
100 jscott 1.1 bgrghg.o sdrag.o senint.o sulfut.o surface.o \
101     t2m.o tgases.o trends_igsm.o trends_giss.o trvdata.o \
102 jscott 1.4 vfunct.o vweigav.o eppaemission.o kvcarbon.o \
103     check_lib.o dd2g04.o util.o \
104     wr_rstrt_nem.o rd_rstrt_nem.o
105 jscott 1.2
106 jscott 1.1 ##
107     ## === Assign dependencies:
108     ##
109    
110 jscott 1.4 ifeq ($(MAKELIB),TRUE)
111 jscott 1.1 ALL: $(TARGET)
112    
113     $(TARGET): $(OBJECT)
114     ar vru $(TARGET) $(OBJECT)
115     ranlib $(TARGET)
116    
117     .F.o:
118     $(CC) $(FFLAGS) $<
119    
120 jscott 1.4 else
121    
122     LIB3DO = $(LIBDIR)LIB3DO_DICSS.a
123     LIB3DO = $(LIBDIR)LIB3DOCEAN.a
124     LIBS:= $(LIBS) $(LIB3DO)
125    
126     ALL: $(OBJECT) $(INCFILE1) $(INCFILES2) $(INCFILES3) $(INCFILES4)
127     $(CC) $(FFLAGS) $(OBJECT) -o mod.out $(LIBS) $(LFLAGCC)
128    
129     OBJECT: $(INCFILE1) $(INCFILES2) $(INCFILES3) $(INCFILES4)
130    
131     .F.o:
132     $(CC) -c $(FFLAGS) $<
133    
134     endif
135 jscott 1.1
136     #clean:
137     # rm -f ./*.o ../fort.*
138    
139    
140    

  ViewVC Help
Powered by ViewVC 1.1.22