/[lmdze]/trunk/GNUmakefile
ViewVC logotype

Diff of /trunk/GNUmakefile

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

revision 78 by guez, Wed Feb 5 17:51:07 2014 UTC revision 138 by guez, Fri May 22 23:13:19 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} $(addprefix ${src_root}/, $(shell cat ${src_root}/directories))  
   
 common_sources := $(shell cat ${src_root}/common_sources)  
 src_no_main_ce0l_only := $(shell cat ${src_root}/src_no_main_ce0l_only)  
 src_no_main_gcm_only := $(shell cat ${src_root}/src_no_main_gcm_only)  
 src_no_main = ${src_no_main_ce0l_only} ${src_no_main_gcm_only} ${common_sources}  
   
 # 2. Objects  
8    
9  obj_ce0l := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_no_main_ce0l_only})))  VPATH := ${makefile_dir}/Sources $(addprefix ${makefile_dir}/Sources/, $(shell cat ${makefile_dir}/directories))
10    
11  obj_gcm := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_no_main_gcm_only})))  src_ce0l := $(shell cat ${makefile_dir}/src_ce0l)
12    src_gcm := $(shell cat ${makefile_dir}/src_gcm)
13  objects := $(addsuffix .o, $(basename ${src_no_main}))  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    
17    sources := $(sort ${src_ce0l} ${src_gcm} ${src_test_ozonecm} ${src_test_inter_barxy} ${src_test_fxhyp})
18    
19    # 2. Objects and executable files
20    
21    obj_ce0l := $(src_ce0l:.f=.o)
22    obj_gcm := $(src_gcm:.f=.o)
23    obj_test_ozonecm := $(src_test_ozonecm:.f=.o)
24    obj_test_inter_barxy := $(src_test_inter_barxy:.f=.o)
25    obj_test_fxhyp := $(src_test_fxhyp:.f=.o)
26    objects := $(sources:.f=.o)
27    execut = ce0l gcm test_ozonecm test_inter_barxy test_fxhyp
28    
29  # 3. Compiler-dependent part  # 3. Compiler-dependent part
30    
31  mode = debug  mode = debug
32  include Compilers/${FC}_${mode}.mk  include Compiler_options/${FC}_${mode}.mk
33    
34  # 4. Rules  # 4. Rules
35    
36  SHELL = bash  SHELL = bash
37  COMPILE.f90 = $(FC) $(F90FLAGS) $(TARGET_ARCH) -c  LINK.o = $(FC) $(LDFLAGS) $(TARGET_ARCH)
   
 %.o: %.f90  
         $(COMPILE.f90) $(OUTPUT_OPTION) $<  
   
 %: %.f90  
         $(LINK.f) $^ $(LOADLIBES) $(LDLIBS) -o $@  
   
38  .DELETE_ON_ERROR:  .DELETE_ON_ERROR:
39  .PHONY: all clean clobber depend  .PHONY: all clean clobber depend
40  all: ce0l gcm trace  all: ${execut} log
41  ce0l: ${obj_ce0l}  ce0l: ${obj_ce0l}
42  gcm: ${obj_gcm}  gcm: ${obj_gcm}
43    test_ozonecm: ${obj_test_ozonecm}
44    test_inter_barxy: ${obj_test_inter_barxy}
45    test_fxhyp: ${obj_test_fxhyp}
46    
47  depend ${src_root}/depend.mk:  depend ${makefile_dir}/depend.mk:
48          makedepf90 -Wmissing -Wconfused $(addprefix -I, ${VPATH}) -nosrc $(addprefix -u , netcdf numer_rec_95 netcdf95 nr_util jumble) ${src_no_main} >${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
49    
50  ${src_root}/TAGS: ${src_no_main} ce0l.f90 gcm.f90  TAGS: ${sources}
51          ctags -e --language-force=fortran -f $@ $^          ctags -e --language-force=fortran $^
52    
53  clean:  clean:
54          rm -f ce0l gcm ${objects} trace          rm -f ${execut} ${objects} log
55    
56  clobber: clean  clobber: clean
57          rm -f *.mod ${src_root}/depend.mk ${src_root}/TAGS          rm -f *.mod ${makefile_dir}/depend.mk TAGS
58    
59  trace:  log:
60          ${FC} ${version_flag} >$@ 2>&1          hostname >$@
61            ${FC} ${version_flag} >>$@ 2>&1
62          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}" >>$@
63    
64  ifneq ($(MAKECMDGOALS), clobber)  ifeq ($(findstring $(MAKECMDGOALS), clobber depend),)
65  include ${src_root}/depend.mk  include ${makefile_dir}/depend.mk
66  endif  endif
67    
68  -include grep.mk  -include grep.mk

Legend:
Removed from v.78  
changed lines
  Added in v.138

  ViewVC Help
Powered by ViewVC 1.1.21