/[lmdze]/trunk/GNUmakefile
ViewVC logotype

Diff of /trunk/GNUmakefile

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

revision 81 by guez, Wed Mar 5 14:38:41 2014 UTC revision 318 by guez, Tue Dec 11 15:06:38 2018 UTC
# Line 2  Line 2 
2    
3  # This makefile builds LMDZE.  # This makefile builds LMDZE.
4    
 # Suffixes are:  
 # "f90" for free format, no preprocessing  
 # "f" for fixed format, no preprocessing  
   
5  # 1. Source files  # 1. Source files
6    
7  src_root = .  makefile_dir = .
   
 VPATH := ${src_root} $(addprefix ${src_root}/, $(shell cat ${src_root}/directories))  
8    
9  common_sources := $(shell cat ${src_root}/common_sources)  src_ce0l := $(shell cat ${makefile_dir}/src_ce0l)
10  src_ce0l_only := $(shell cat ${src_root}/src_ce0l_only)  src_gcm := $(shell cat ${makefile_dir}/src_gcm)
11  src_gcm_only := $(shell cat ${src_root}/src_gcm_only)  src_test_ozonecm := $(shell cat ${makefile_dir}/src_test_ozonecm)
12  sources = ${src_ce0l_only} ${src_gcm_only} ${common_sources}  src_test_inter_barxy := $(shell cat ${makefile_dir}/src_test_inter_barxy)
13    src_test_fxhyp := $(shell cat ${makefile_dir}/src_test_fxhyp)
14    src_test_inifilr := $(shell cat ${makefile_dir}/src_test_inifilr)
15    src_test_orbite = test_orbite.f orbite.f YOMCST.f unit_nml_m.f
16    
17    sources := $(sort ${src_ce0l} ${src_gcm} ${src_test_ozonecm} ${src_test_inter_barxy} ${src_test_fxhyp} ${src_test_inifilr} ${src_test_orbite})
18    
19    include ${general_compiler_options_dir}/settings.mk
20    
21    VPATH += $(addprefix ${makefile_dir}/, $(shell cat ${makefile_dir}/directories))
22    cpp_macros = CPP_IIM=16,CPP_JJM=12,CPP_LLM=11
23    lib_list = numer_rec_95 jumble nr_util netcdf95 netcdff
24    
25  # 2. Objects and executable files  # 2. Objects and executable files
26    
27  obj_ce0l := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_ce0l_only})))  obj_ce0l := $(addsuffix .o, $(basename ${src_ce0l}))
28    obj_gcm := $(addsuffix .o, $(basename ${src_gcm}))
29  obj_gcm := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_gcm_only})))  obj_test_ozonecm := $(addsuffix .o, $(basename ${src_test_ozonecm}))
30    obj_test_inter_barxy := $(addsuffix .o, $(basename ${src_test_inter_barxy}))
31    obj_test_fxhyp := $(addsuffix .o, $(basename ${src_test_fxhyp}))
32    obj_test_inifilr := $(addsuffix .o, $(basename ${src_test_inifilr}))
33    obj_test_orbite := $(addsuffix .o, $(basename ${src_test_orbite}))
34  objects := $(addsuffix .o, $(basename ${sources}))  objects := $(addsuffix .o, $(basename ${sources}))
35  execut = ce0l gcm  execut = ce0l gcm test_ozonecm test_inter_barxy test_fxhyp test_inifilr test_orbite
   
 # 3. Compiler-dependent part  
   
 mode = debug  
 include Compiler_options/${FC}_${mode}.mk  
   
 # 4. Rules  
36    
37  SHELL = bash  # 3. Rules
 COMPILE.f90 = $(FC) $(F90FLAGS) $(TARGET_ARCH) -c  
38    
 %.o: %.f90  
         $(COMPILE.f90) $(OUTPUT_OPTION) $<  
   
 .DELETE_ON_ERROR:  
 .PHONY: all clean clobber depend  
39  all: ${execut} log  all: ${execut} log
   
 ${execut}:  
         $(FC) $(LDFLAGS) $^ $(LDLIBS) -o $@  
   
40  ce0l: ${obj_ce0l}  ce0l: ${obj_ce0l}
41  gcm: ${obj_gcm}  gcm: ${obj_gcm}
42    test_ozonecm: ${obj_test_ozonecm}
43    test_inter_barxy: ${obj_test_inter_barxy}
44    test_fxhyp: ${obj_test_fxhyp}
45    test_inifilr: ${obj_test_inifilr}
46    test_orbite: ${obj_test_orbite}
47    
48  depend ${src_root}/depend.mk:  depend ${makefile_dir}/depend.mk:
49          makedepf90 -Wmissing -Wconfused $(addprefix -I, ${VPATH}) -nosrc $(addprefix -u , netcdf numer_rec_95 netcdf95 nr_util jumble) ${sources} >${src_root}/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
   
 ${src_root}/TAGS: ${sources}  
         ctags -e --language-force=fortran -f $@ $^  
50    
51  clean:  clean:
52          rm -f ${execut} ${objects} log          rm -f ${execut} ${objects} log
53    
54  clobber: clean  ifeq ($(findstring $(MAKECMDGOALS), clobber depend),)
55          rm -f *.mod ${src_root}/depend.mk ${src_root}/TAGS  include ${makefile_dir}/depend.mk
   
 log:  
         hostname >$@  
         ${FC} ${version_flag} >>$@ 2>&1  
         echo -e "\nFC = ${FC}\n\nFFLAGS = ${FFLAGS}\n\nLDLIBS = ${LDLIBS}\n\nLDFLAGS = ${LDFLAGS}" >>$@  
   
 ifneq ($(MAKECMDGOALS), clobber)  
 include ${src_root}/depend.mk  
56  endif  endif
57    
58  -include grep.mk  -include grep.mk

Legend:
Removed from v.81  
changed lines
  Added in v.318

  ViewVC Help
Powered by ViewVC 1.1.21