/[lmdze]/trunk/GNUmakefile
ViewVC logotype

Diff of /trunk/GNUmakefile

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 208 by guez, Wed Dec 7 16:44:53 2016 UTC revision 311 by guez, Mon Dec 3 17:52:21 2018 UTC
# Line 2  Line 2 
2    
3  # This makefile builds LMDZE.  # This makefile builds LMDZE.
4    
 # 1. Source files  
   
5  makefile_dir = .  makefile_dir = .
6    include ${general_compiler_options_dir}/settings.mk
7    
8  VPATH := ${makefile_dir}/Sources $(addprefix ${makefile_dir}/Sources/, $(shell cat ${makefile_dir}/directories))  # 1. Source files
9    
10    VPATH += $(addprefix ${makefile_dir}/, $(shell cat ${makefile_dir}/directories))
11    
12  src_ce0l := $(shell cat ${makefile_dir}/src_ce0l)  src_ce0l := $(shell cat ${makefile_dir}/src_ce0l)
13  src_gcm := $(shell cat ${makefile_dir}/src_gcm)  src_gcm := $(shell cat ${makefile_dir}/src_gcm)
# Line 17  src_test_inifilr := $(shell cat ${makefi Line 18  src_test_inifilr := $(shell cat ${makefi
18    
19  sources := $(sort ${src_ce0l} ${src_gcm} ${src_test_ozonecm} ${src_test_inter_barxy} ${src_test_fxhyp} ${src_test_inifilr})  sources := $(sort ${src_ce0l} ${src_gcm} ${src_test_ozonecm} ${src_test_inter_barxy} ${src_test_fxhyp} ${src_test_inifilr})
20    
21    cpp_macros = CPP_IIM=16,CPP_JJM=12,CPP_LLM=11
22  lib_list = numer_rec_95 jumble nr_util netcdf95 netcdff  lib_list = numer_rec_95 jumble nr_util netcdf95 netcdff
23    
24  # 2. Objects and executable files  # 2. Objects and executable files
25    
26  obj_ce0l := $(src_ce0l:.f=.o)  obj_ce0l := $(addsuffix .o, $(basename ${src_ce0l}))
27  obj_gcm := $(src_gcm:.f=.o)  obj_gcm := $(addsuffix .o, $(basename ${src_gcm}))
28  obj_test_ozonecm := $(src_test_ozonecm:.f=.o)  obj_test_ozonecm := $(addsuffix .o, $(basename ${src_test_ozonecm}))
29  obj_test_inter_barxy := $(src_test_inter_barxy:.f=.o)  obj_test_inter_barxy := $(addsuffix .o, $(basename ${src_test_inter_barxy}))
30  obj_test_fxhyp := $(src_test_fxhyp:.f=.o)  obj_test_fxhyp := $(addsuffix .o, $(basename ${src_test_fxhyp}))
31  obj_test_inifilr := $(src_test_inifilr:.f=.o)  obj_test_inifilr := $(addsuffix .o, $(basename ${src_test_inifilr}))
32  objects := $(sources:.f=.o)  objects := $(addsuffix .o, $(basename ${sources}))
33  execut = ce0l gcm test_ozonecm test_inter_barxy test_fxhyp test_inifilr  execut = ce0l gcm test_ozonecm test_inter_barxy test_fxhyp test_inifilr
34    
35  # 3. Compiler-dependent part  # 3. Rules
   
 mode = debug  
 include ${general_compiler_options_dir}/${FC}_${mode}.mk  
36    
 # 4. Rules  
   
 SHELL = bash  
 LINK.o = $(FC) $(LDFLAGS) $(TARGET_ARCH)  
 .DELETE_ON_ERROR:  
 .PHONY: all clean clobber depend  
37  all: ${execut} log  all: ${execut} log
38  ce0l: ${obj_ce0l}  ce0l: ${obj_ce0l}
39  gcm: ${obj_gcm}  gcm: ${obj_gcm}
# Line 52  test_inifilr: ${obj_test_inifilr} Line 45  test_inifilr: ${obj_test_inifilr}
45  depend ${makefile_dir}/depend.mk:  depend ${makefile_dir}/depend.mk:
46          makedepf90 -free -Wmissing -Wconfused $(addprefix -I, ${VPATH}) -nosrc $(addprefix -u , netcdf numer_rec_95 netcdf95 nr_util jumble) ${sources} >${makefile_dir}/depend.mk          makedepf90 -free -Wmissing -Wconfused $(addprefix -I, ${VPATH}) -nosrc $(addprefix -u , netcdf numer_rec_95 netcdf95 nr_util jumble) ${sources} >${makefile_dir}/depend.mk
47    
 TAGS: ${sources}  
         ctags -e --language-force=fortran $^  
   
48  clean:  clean:
49          rm -f ${execut} ${objects} log          rm -f ${execut} ${objects} log
50    
 clobber: clean  
         rm -f *.mod ${makefile_dir}/depend.mk TAGS  
   
 log:  
         hostname >$@  
         ${FC} ${version_flag} >>$@ 2>&1  
         echo -e "\nFC = ${FC}\n\nFFLAGS = ${FFLAGS}\n\nLDLIBS = ${LDLIBS}\n\nLDFLAGS = ${LDFLAGS}" >>$@  
   
51  ifeq ($(findstring $(MAKECMDGOALS), clobber depend),)  ifeq ($(findstring $(MAKECMDGOALS), clobber depend),)
52  include ${makefile_dir}/depend.mk  include ${makefile_dir}/depend.mk
53  endif  endif

Legend:
Removed from v.208  
changed lines
  Added in v.311

  ViewVC Help
Powered by ViewVC 1.1.21