/[lmdze]/trunk/GNUmakefile
ViewVC logotype

Diff of /trunk/GNUmakefile

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

trunk/libf/GNUmakefile revision 74 by guez, Fri Nov 15 18:02:57 2013 UTC trunk/GNUmakefile revision 167 by guez, Mon Aug 24 16:30:33 2015 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  
   
 common_sources := $(shell cat ${src_root}/common_sources)  
8    
9  sources_ce0l := $(sort ${common_sources} $(shell cat ${src_root}/sources_ce0l_only))  VPATH := ${makefile_dir}/Sources $(addprefix ${makefile_dir}/Sources/, $(shell cat ${makefile_dir}/directories))
10    
11  sources_gcm := $(sort ${common_sources} $(shell cat ${src_root}/sources_gcm_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 := $(sort ${sources_ce0l} ${sources_gcm})  sources := $(sort ${src_ce0l} ${src_gcm} ${src_test_ozonecm} ${src_test_inter_barxy} ${src_test_fxhyp} ${src_test_inifilr})
19    
20  # 2. Objects and executable files  # 2. Objects and executable files
21    
22  # Object files:  obj_ce0l := $(src_ce0l:.f=.o)
23  obj_ce0l := $(addsuffix .o, $(basename ${sources_ce0l}))  obj_gcm := $(src_gcm:.f=.o)
24  obj_gcm := $(addsuffix .o, $(basename ${sources_gcm}))  obj_test_ozonecm := $(src_test_ozonecm:.f=.o)
25  objects := $(addsuffix .o, $(basename ${sources}))  obj_test_inter_barxy := $(src_test_inter_barxy:.f=.o)
26    obj_test_fxhyp := $(src_test_fxhyp:.f=.o)
27  # Executable files:  obj_test_inifilr := $(src_test_inifilr:.f=.o)
28  execut = ce0l gcm  objects := $(sources:.f=.o)
29    execut = ce0l gcm test_ozonecm test_inter_barxy test_fxhyp test_inifilr
30    
31  # 3. Compiler-dependent part  # 3. Compiler-dependent part
32    
33  mode = debug  mode = debug
34  include ../Compilers/${FC}_${mode}.mk  include Compiler_options/${FC}_${mode}.mk
35    
36  # 4. Rules  # 4. Rules
37    
38  SHELL = bash  SHELL = bash
39    LINK.o = $(FC) $(LDFLAGS) $(TARGET_ARCH)
40  # Extend known suffixes:  .DELETE_ON_ERROR:
   
 COMPILE.f90 = $(FC) $(F90FLAGS) $(TARGET_ARCH) -c  
   
 %.o: %.f90  
         $(COMPILE.f90) $(OUTPUT_OPTION) $<  
   
41  .PHONY: all clean clobber depend  .PHONY: all clean clobber depend
42    all: ${execut} log
 all: ${execut} trace  
   
 ${execut}:  
         $(FC) $(LDFLAGS) $^ $(LDLIBS) -o $@  
   
43  ce0l: ${obj_ce0l}  ce0l: ${obj_ce0l}
44  gcm: ${obj_gcm}  gcm: ${obj_gcm}
45    test_ozonecm: ${obj_test_ozonecm}
46    test_inter_barxy: ${obj_test_inter_barxy}
47    test_fxhyp: ${obj_test_fxhyp}
48    test_inifilr: ${obj_test_inifilr}
49    
50  depend ${src_root}/depend.mk:  depend ${makefile_dir}/depend.mk:
51          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
52    
53  TAGS: ${sources}  TAGS: ${sources}
54          ctags -e --language-force=fortran $^          ctags -e --language-force=fortran $^
55    
56  clean:  clean:
57          rm -f ${objects}          rm -f ${execut} ${objects} log
         rm -f ${execut} trace  
58    
59  clobber: clean  clobber: clean
60          rm -f *.mod ${src_root}/depend.mk ${src_root}/TAGS          rm -f *.mod ${makefile_dir}/depend.mk TAGS
61    
62  trace:  log:
63          ${FC} ${version_flag} >$@ 2>&1          hostname >$@
64            ${FC} ${version_flag} >>$@ 2>&1
65          echo -e "\nFC = ${FC}\n\nFFLAGS = ${FFLAGS}\n\nLDLIBS = ${LDLIBS}\n\nLDFLAGS = ${LDFLAGS}" >>$@          echo -e "\nFC = ${FC}\n\nFFLAGS = ${FFLAGS}\n\nLDLIBS = ${LDLIBS}\n\nLDFLAGS = ${LDFLAGS}" >>$@
66    
67  # Dependencies among object files:  ifeq ($(findstring $(MAKECMDGOALS), clobber depend),)
68  include ${src_root}/depend.mk  include ${makefile_dir}/depend.mk
69    endif
70    
 # Other rules, optionally:  
71  -include grep.mk  -include grep.mk
72  -include nag_rules.mk  -include nag_rules.mk

Legend:
Removed from v.74  
changed lines
  Added in v.167

  ViewVC Help
Powered by ViewVC 1.1.21