/[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 82 by guez, Wed Mar 5 14:57:53 2014 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 = .  src_root = .
8    
9  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  VPATH := ${src_root} $(addprefix ${src_root}/, $(shell cat ${src_root}/directories))
10    
11  common_sources := $(shell cat ${src_root}/common_sources)  common_sources := $(shell cat ${src_root}/common_sources)
12    src_ce0l_only := $(shell cat ${src_root}/src_ce0l_only)
13    src_gcm_only := $(shell cat ${src_root}/src_gcm_only)
14    sources = ${src_ce0l_only} ${src_gcm_only} ${common_sources}
15    
16  sources_ce0l := $(sort ${common_sources} $(shell cat ${src_root}/sources_ce0l_only))  # 2. Objects and executable files
17    
18  sources_gcm := $(sort ${common_sources} $(shell cat ${src_root}/sources_gcm_only))  obj_ce0l := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_ce0l_only})))
19    
20  sources := $(sort ${sources_ce0l} ${sources_gcm})  obj_gcm := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_gcm_only})))
21    
 # 2. Objects and executable files  
   
 # Object files:  
 obj_ce0l := $(addsuffix .o, $(basename ${sources_ce0l}))  
 obj_gcm := $(addsuffix .o, $(basename ${sources_gcm}))  
22  objects := $(addsuffix .o, $(basename ${sources}))  objects := $(addsuffix .o, $(basename ${sources}))
   
 # Executable files:  
23  execut = ce0l gcm  execut = ce0l gcm
24    
25  # 3. Compiler-dependent part  # 3. Compiler-dependent part
26    
27  mode = debug  mode = debug
28  include ../Compilers/${FC}_${mode}.mk  include Compiler_options/${FC}_${mode}.mk
29    
30  # 4. Rules  # 4. Rules
31    
32  SHELL = bash  SHELL = bash
33    .DELETE_ON_ERROR:
 # Extend known suffixes:  
   
 COMPILE.f90 = $(FC) $(F90FLAGS) $(TARGET_ARCH) -c  
   
 %.o: %.f90  
         $(COMPILE.f90) $(OUTPUT_OPTION) $<  
   
34  .PHONY: all clean clobber depend  .PHONY: all clean clobber depend
35    all: ${execut} log
 all: ${execut} trace  
36    
37  ${execut}:  ${execut}:
38          $(FC) $(LDFLAGS) $^ $(LDLIBS) -o $@          $(FC) $(LDFLAGS) $^ $(LDLIBS) -o $@
# Line 57  ce0l: ${obj_ce0l} Line 41  ce0l: ${obj_ce0l}
41  gcm: ${obj_gcm}  gcm: ${obj_gcm}
42    
43  depend ${src_root}/depend.mk:  depend ${src_root}/depend.mk:
44          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} >${src_root}/depend.mk
45    
46  TAGS: ${sources}  ${src_root}/TAGS: ${sources}
47          ctags -e --language-force=fortran $^          ctags -e --language-force=fortran -f $@ $^
48    
49  clean:  clean:
50          rm -f ${objects}          rm -f ${execut} ${objects} log
         rm -f ${execut} trace  
51    
52  clobber: clean  clobber: clean
53          rm -f *.mod ${src_root}/depend.mk ${src_root}/TAGS          rm -f *.mod ${src_root}/depend.mk ${src_root}/TAGS
54    
55  trace:  log:
56          ${FC} ${version_flag} >$@ 2>&1          hostname >$@
57            ${FC} ${version_flag} >>$@ 2>&1
58          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}" >>$@
59    
60  # Dependencies among object files:  ifneq ($(MAKECMDGOALS), clobber)
61  include ${src_root}/depend.mk  include ${src_root}/depend.mk
62    endif
63    
 # Other rules, optionally:  
64  -include grep.mk  -include grep.mk
65  -include nag_rules.mk  -include nag_rules.mk

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

  ViewVC Help
Powered by ViewVC 1.1.21