/[lmdze]/trunk/GNUmakefile
ViewVC logotype

Diff of /trunk/GNUmakefile

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

trunk/libf/GNUmakefile revision 73 by guez, Fri Nov 15 17:48:30 2013 UTC trunk/GNUmakefile revision 267 by guez, Thu May 3 16:14:08 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}:${src_root}/dyn3d:${src_root}/dyn3d/Vlsplt:${src_root}/filtrez:${src_root}/phylmd:${src_root}/bibio:${src_root}/phylmd/Mobidic:${src_root}/phylmd/Orography:${src_root}/phylmd/Radlwsw:${src_root}/IOIPSL:${src_root}/IOIPSL/Stringop:${src_root}/dyn3d/Read_reanalyse:${src_root}/phylmd/Thermcell:${src_root}/phylmd/CV3_routines:${src_root}/phylmd/Conflx:${src_root}/phylmd/CV_routines:${src_root}/phylmd/Interface_surf:${src_root}/dyn3d/Dissipation:${src_root}/IOIPSL/Histcom:${src_root}/IOIPSL/Flincom  
8    
9  common_sources := $(shell cat ${src_root}/common_sources)  VPATH := ${makefile_dir} $(addprefix ${makefile_dir}/, $(shell cat ${makefile_dir}/directories))
10    
11  sources_ce0l := $(sort ${common_sources} $(shell cat ${src_root}/sources_ce0l_only))  src_ce0l := $(shell cat ${makefile_dir}/src_ce0l)
12    src_gcm := $(shell cat ${makefile_dir}/src_gcm)
13    src_test_ozonecm := $(shell cat ${makefile_dir}/src_test_ozonecm)
14    src_test_inter_barxy := $(shell cat ${makefile_dir}/src_test_inter_barxy)
15    src_test_fxhyp := $(shell cat ${makefile_dir}/src_test_fxhyp)
16    src_test_inifilr := $(shell cat ${makefile_dir}/src_test_inifilr)
17    
18  sources_gcm := $(sort ${common_sources} $(shell cat ${src_root}/sources_gcm_only))  sources := $(sort ${src_ce0l} ${src_gcm} ${src_test_ozonecm} ${src_test_inter_barxy} ${src_test_fxhyp} ${src_test_inifilr})
19    
20  sources := $(sort ${sources_ce0l} ${sources_gcm})  cpp_macros = CPP_IIM=16,CPP_JJM=12,CPP_LLM=11
21    lib_list = numer_rec_95 jumble nr_util netcdf95 netcdff
22    
23  # 2. Objects and executable files  # 2. Objects and executable files
24    
25  # Object files:  obj_ce0l := $(addsuffix .o, $(basename ${src_ce0l}))
26  obj_ce0l := $(addsuffix .o, $(basename ${sources_ce0l}))  obj_gcm := $(addsuffix .o, $(basename ${src_gcm}))
27  obj_gcm := $(addsuffix .o, $(basename ${sources_gcm}))  obj_test_ozonecm := $(addsuffix .o, $(basename ${src_test_ozonecm}))
28    obj_test_inter_barxy := $(addsuffix .o, $(basename ${src_test_inter_barxy}))
29    obj_test_fxhyp := $(addsuffix .o, $(basename ${src_test_fxhyp}))
30    obj_test_inifilr := $(addsuffix .o, $(basename ${src_test_inifilr}))
31  objects := $(addsuffix .o, $(basename ${sources}))  objects := $(addsuffix .o, $(basename ${sources}))
32    execut = ce0l gcm test_ozonecm test_inter_barxy test_fxhyp test_inifilr
 # Executable files:  
 execut = ce0l gcm  
33    
34  # 3. Compiler-dependent part  # 3. Compiler-dependent part
35    
36  mode = debug  mode = debug
37  include ../Compilers/${FC}_${mode}.mk  include ${general_compiler_options_dir}/${FC}_${mode}.mk
38    
39  # 4. Rules  # 4. Rules
40    
41  SHELL = bash  SHELL = bash
42    LINK.o = $(FC) $(LDFLAGS) $(TARGET_ARCH)
43    
44  # Extend known suffixes:  %.o: %.f
45            @echo "Building $@..."
46  COMPILE.f90 = $(FC) $(F90FLAGS) $(TARGET_ARCH) -c          @$(COMPILE.f) $(OUTPUT_OPTION) $<
47    
48  %.o: %.f90  %: %.o
49          $(COMPILE.f90) $(OUTPUT_OPTION) $<          @echo "Linking $@..."
50            @$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
51    
52    .DELETE_ON_ERROR:
53  .PHONY: all clean clobber depend  .PHONY: all clean clobber depend
54    all: ${execut} log
 all: ${execut} trace  
   
 ${execut}:  
         $(FC) $(LDFLAGS) $^ $(LDLIBS) -o $@  
   
55  ce0l: ${obj_ce0l}  ce0l: ${obj_ce0l}
56  gcm: ${obj_gcm}  gcm: ${obj_gcm}
57    test_ozonecm: ${obj_test_ozonecm}
58    test_inter_barxy: ${obj_test_inter_barxy}
59    test_fxhyp: ${obj_test_fxhyp}
60    test_inifilr: ${obj_test_inifilr}
61    
62  depend ${src_root}/depend.mk:  depend ${makefile_dir}/depend.mk:
63          makedepf90 -Wmissing -Wconfused -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
64    
65  TAGS: ${sources}  TAGS: ${sources}
66          ctags -e --language-force=fortran $^          ctags -e --language-force=fortran $^
67    
68  clean:  clean:
69          rm -f ${objects}          rm -f ${execut} ${objects} log
         rm -f ${execut} trace  
70    
71  clobber: clean  clobber: clean
72          rm -f *.mod ${src_root}/depend.mk ${src_root}/TAGS          rm -f *.mod ${makefile_dir}/depend.mk TAGS
   
 trace:  
         ${FC} ${version_flag} >$@ 2>&1  
         echo -e "\nFC = ${FC}\n\nFFLAGS = ${FFLAGS}\n\nLDLIBS = ${LDLIBS}\n\nLDFLAGS = ${LDFLAGS}" >>$@  
73    
74  # Dependencies among object files:  log:
75  include ${src_root}/depend.mk          hostname >$@
76            ${FC} ${version_flag} >>$@ 2>&1
77            @echo -e "\nFC = ${FC}\n\nFFLAGS = ${FFLAGS}\n\nLDLIBS = ${LDLIBS}\n\nLDFLAGS = ${LDFLAGS}" >>$@
78    
79    ifeq ($(findstring $(MAKECMDGOALS), clobber depend),)
80    include ${makefile_dir}/depend.mk
81    endif
82    
 # Other rules, optionally:  
83  -include grep.mk  -include grep.mk
84  -include nag_rules.mk  -include nag_rules.mk

Legend:
Removed from v.73  
changed lines
  Added in v.267

  ViewVC Help
Powered by ViewVC 1.1.21