/[lmdze]/trunk/GNUmakefile
ViewVC logotype

Diff of /trunk/GNUmakefile

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

revision 79 by guez, Fri Feb 28 17:52:47 2014 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    
5  # Suffixes are:  makefile_dir = .
6  # "f90" for free format, no preprocessing  include ${general_compiler_options_dir}/settings.mk
 # "f" for fixed format, no preprocessing  
7    
8  # 1. Source files  # 1. Source files
9    
10  src_root = .  VPATH += $(addprefix ${makefile_dir}/, $(shell cat ${makefile_dir}/directories))
11    
12  VPATH := ${src_root} $(addprefix ${src_root}/, $(shell cat ${src_root}/directories))  src_ce0l := $(shell cat ${makefile_dir}/src_ce0l)
13    src_gcm := $(shell cat ${makefile_dir}/src_gcm)
14    src_test_ozonecm := $(shell cat ${makefile_dir}/src_test_ozonecm)
15    src_test_inter_barxy := $(shell cat ${makefile_dir}/src_test_inter_barxy)
16    src_test_fxhyp := $(shell cat ${makefile_dir}/src_test_fxhyp)
17    src_test_inifilr := $(shell cat ${makefile_dir}/src_test_inifilr)
18    
19  common_sources := $(shell cat ${src_root}/common_sources)  sources := $(sort ${src_ce0l} ${src_gcm} ${src_test_ozonecm} ${src_test_inter_barxy} ${src_test_fxhyp} ${src_test_inifilr})
 src_ce0l_only := $(shell cat ${src_root}/src_ce0l_only)  
 src_gcm_only := $(shell cat ${src_root}/src_gcm_only)  
 sources = ${src_ce0l_only} ${src_gcm_only} ${common_sources}  
20    
21  # 2. Objects and executable files  cpp_macros = CPP_IIM=16,CPP_JJM=12,CPP_LLM=11
22    lib_list = numer_rec_95 jumble nr_util netcdf95 netcdff
 obj_ce0l := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_ce0l_only})))  
23    
24  obj_gcm := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_gcm_only})))  # 2. Objects and executable files
25    
26    obj_ce0l := $(addsuffix .o, $(basename ${src_ce0l}))
27    obj_gcm := $(addsuffix .o, $(basename ${src_gcm}))
28    obj_test_ozonecm := $(addsuffix .o, $(basename ${src_test_ozonecm}))
29    obj_test_inter_barxy := $(addsuffix .o, $(basename ${src_test_inter_barxy}))
30    obj_test_fxhyp := $(addsuffix .o, $(basename ${src_test_fxhyp}))
31    obj_test_inifilr := $(addsuffix .o, $(basename ${src_test_inifilr}))
32  objects := $(addsuffix .o, $(basename ${sources}))  objects := $(addsuffix .o, $(basename ${sources}))
33  execut = ce0l gcm  execut = ce0l gcm test_ozonecm test_inter_barxy test_fxhyp test_inifilr
   
 # 3. Compiler-dependent part  
   
 mode = debug  
 include Compilers/${FC}_${mode}.mk  
   
 # 4. Rules  
34    
35  SHELL = bash  # 3. Rules
 COMPILE.f90 = $(FC) $(F90FLAGS) $(TARGET_ARCH) -c  
36    
 %.o: %.f90  
         $(COMPILE.f90) $(OUTPUT_OPTION) $<  
   
 .DELETE_ON_ERROR:  
 .PHONY: all clean clobber depend  
37  all: ${execut} log  all: ${execut} log
   
 ${execut}:  
         $(FC) $(LDFLAGS) $^ $(LDLIBS) -o $@  
   
38  ce0l: ${obj_ce0l}  ce0l: ${obj_ce0l}
39  gcm: ${obj_gcm}  gcm: ${obj_gcm}
40    test_ozonecm: ${obj_test_ozonecm}
41    test_inter_barxy: ${obj_test_inter_barxy}
42    test_fxhyp: ${obj_test_fxhyp}
43    test_inifilr: ${obj_test_inifilr}
44    
45  depend ${src_root}/depend.mk:  depend ${makefile_dir}/depend.mk:
46          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 $@ $^  
47    
48  clean:  clean:
49          rm -f ${execut} ${objects} log          rm -f ${execut} ${objects} log
50    
51  clobber: clean  ifeq ($(findstring $(MAKECMDGOALS), clobber depend),)
52          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  
53  endif  endif
54    
55  -include grep.mk  -include grep.mk

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

  ViewVC Help
Powered by ViewVC 1.1.21