--- trunk/GNUmakefile 2014/02/05 17:51:07 78 +++ trunk/Compilation/GNUmakefile 2015/02/27 16:44:07 131 @@ -2,69 +2,70 @@ # This makefile builds LMDZE. -# Suffixes are: -# "f90" for free format, no preprocessing -# "f" for fixed format, no preprocessing - # 1. Source files -src_root = . - -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 - -obj_ce0l := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_no_main_ce0l_only}))) +makefile_dir = . -obj_gcm := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_no_main_gcm_only}))) +VPATH := ${makefile_dir}/.. $(addprefix ${makefile_dir}/../, $(shell cat ${makefile_dir}/directories)) -objects := $(addsuffix .o, $(basename ${src_no_main})) +src_ce0l := $(shell cat ${makefile_dir}/src_ce0l) +src_gcm := $(shell cat ${makefile_dir}/src_gcm) +src_test_ozonecm := $(shell cat ${makefile_dir}/src_test_ozonecm) +src_test_inter_barxy := $(shell cat ${makefile_dir}/src_test_inter_barxy) +src_test_fxhyp := $(shell cat ${makefile_dir}/src_test_fxhyp) + +sources := $(sort ${src_ce0l} ${src_gcm} ${src_test_ozonecm} ${src_test_inter_barxy} ${src_test_fxhyp}) + +# 2. Objects and executable files + +obj_ce0l := $(src_ce0l:.f=.o) +obj_gcm := $(src_gcm:.f=.o) +obj_test_ozonecm := $(src_test_ozonecm:.f=.o) +obj_test_inter_barxy := $(src_test_inter_barxy:.f=.o) +obj_test_fxhyp := $(src_test_fxhyp:.f=.o) +objects := $(sources:.f=.o) +execut = ce0l gcm test_ozonecm test_inter_barxy test_fxhyp # 3. Compiler-dependent part mode = debug -include Compilers/${FC}_${mode}.mk +include Compiler_options/${FC}_${mode}.mk # 4. Rules SHELL = bash -COMPILE.f90 = $(FC) $(F90FLAGS) $(TARGET_ARCH) -c - -%.o: %.f90 - $(COMPILE.f90) $(OUTPUT_OPTION) $< - -%: %.f90 - $(LINK.f) $^ $(LOADLIBES) $(LDLIBS) -o $@ - .DELETE_ON_ERROR: .PHONY: all clean clobber depend -all: ce0l gcm trace +all: ${execut} log + +${execut}: + $(FC) $(LDFLAGS) $^ $(LDLIBS) -o $@ + ce0l: ${obj_ce0l} gcm: ${obj_gcm} +test_ozonecm: ${obj_test_ozonecm} +test_inter_barxy: ${obj_test_inter_barxy} +test_fxhyp: ${obj_test_fxhyp} -depend ${src_root}/depend.mk: - makedepf90 -Wmissing -Wconfused $(addprefix -I, ${VPATH}) -nosrc $(addprefix -u , netcdf numer_rec_95 netcdf95 nr_util jumble) ${src_no_main} >${src_root}/depend.mk +depend ${makefile_dir}/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: ${src_no_main} ce0l.f90 gcm.f90 - ctags -e --language-force=fortran -f $@ $^ +TAGS: ${sources} + ctags -e --language-force=fortran $^ clean: - rm -f ce0l gcm ${objects} trace + rm -f ${execut} ${objects} log clobber: clean - rm -f *.mod ${src_root}/depend.mk ${src_root}/TAGS + rm -f *.mod ${makefile_dir}/depend.mk TAGS -trace: - ${FC} ${version_flag} >$@ 2>&1 +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 +ifeq ($(findstring $(MAKECMDGOALS), clobber depend),) +include ${makefile_dir}/depend.mk endif -include grep.mk