Skip to content
Snippets Groups Projects
Commit 3073eaf1 authored by Anne Fouilloux's avatar Anne Fouilloux
Browse files

netcdf needs to be added when compiling/linking FLEXPART. I added UIO makefile...

netcdf needs to be added when compiling/linking FLEXPART. I added UIO makefile makefile.ecmwf_ifort_geo
parent 660bcb7e
No related branches found
No related tags found
No related merge requests found
SHELL = /bin/bash
MAIN = FLEXPART_IFORT
#
FC = ifort
INCPATH = $(GRIB_API_HOME)/include
LIBPATH1 = $(GRIB_API_HOME)/lib
LIBPATH2 = .
NETCDF_HOME=/cluster/software/VERSIONS/netcdf.intel-4.2.1.1
#FFLAGS = -O3 -m64 -mcmodel=medium -fconvert=little-endian -frecord-marker=4 -I$(INCPATH)
FFLAGS = -m64 -mcmodel=medium -convert little_endian -assume byterecl -I$(INCPATH) -I$(NETCDF_HOME)/include
#FFLAGS = -fbounds-check -m64 -mcmodel=medium -fconvert=little-endian -frecord-marker=4 -I$(INCPATH)
LDFLAGS = $(FFLAGS) -L$(LIBPATH2) -L$(LIBPATH1) -lgrib_api_f90 -lgrib_api -lm -ljasper -L$(NETCDF_HOME)/lib -lnetcdff -lnetcdf
#
MODOBJS = \
par_mod.o com_mod.o \
conv_mod.o hanna_mod.o \
interpol_mod.o cmapf_mod.o \
unc_mod.o oh_mod.o \
xmass_mod.o flux_mod.o \
point_mod.o outg_mod.o \
netcdf_output_mod.o
OBJECTS = \
writeheader_txt.o \
writeheader_surf.o \
writeheader_nest_surf.o \
concoutput_surf.o \
concoutput_surf_nest.o \
writeheader.o assignland.o\
calcpar.o part0.o \
caldate.o partdep.o \
coordtrafo.o psih.o \
raerod.o \
drydepokernel.o random.o \
erf.o readavailable.o \
ew.o readcommand.o \
advance.o readdepo.o \
releaseparticles.o psim.o \
FLEXPART.o readlanduse.o \
getfields.o init_domainfill.o\
interpol_wind.o readoutgrid.o \
interpol_all.o readpaths.o \
getrb.o readreceptors.o \
getrc.o readreleases.o \
getvdep.o readspecies.o \
interpol_misslev.o readwind.o \
conccalc.o richardson.o \
concoutput.o scalev.o \
pbl_profile.o readOHfield.o\
juldate.o timemanager.o \
interpol_vdep.o interpol_rain.o \
verttransform.o partoutput.o \
hanna.o wetdepokernel.o \
mean.o wetdepo.o \
hanna_short.o windalign.o \
obukhov.o gridcheck.o \
hanna1.o initialize.o \
gridcheck_nests.o \
readwind_nests.o calcpar_nests.o \
verttransform_nests.o interpol_all_nests.o \
interpol_wind_nests.o interpol_misslev_nests.o \
interpol_vdep_nests.o interpol_rain_nests.o \
getvdep_nests.o \
readageclasses.o readpartpositions.o \
calcfluxes.o fluxoutput.o \
qvsat.o skplin.o \
convmix.o calcmatrix.o \
convect43c.o redist.o \
sort2.o distance.o \
centerofmass.o plumetraj.o \
openouttraj.o calcpv.o \
calcpv_nests.o distance2.o \
clustering.o interpol_wind_short.o \
interpol_wind_short_nests.o shift_field_0.o \
shift_field.o outgrid_init.o \
openreceptors.o boundcond_domainfill.o\
partoutput_short.o readoutgrid_nest.o \
outgrid_init_nest.o writeheader_nest.o \
concoutput_nest.o wetdepokernel_nest.o \
drydepokernel_nest.o zenithangle.o \
ohreaction.o getvdep_nests.o \
initial_cond_calc.o initial_cond_output.o \
dynamic_viscosity.o get_settling.o
$(MAIN): $(MODOBJS) $(OBJECTS)
$(FC) *.o -o $(MAIN) $(LDFLAGS)
$(OBJECTS): $(MODOBJS)
%.o: %.f90
$(FC) -c $(FFLAGS) $<
clean:
rm *.o *.mod $(MAIN)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment