--- trunk/GNUmakefile 2014/02/28 17:52:47 79 +++ trunk/GNUmakefile 2018/12/03 17:52:21 311 @@ -2,72 +2,54 @@ # This makefile builds LMDZE. -# Suffixes are: -# "f90" for free format, no preprocessing -# "f" for fixed format, no preprocessing +makefile_dir = . +include ${general_compiler_options_dir}/settings.mk # 1. Source files -src_root = . +VPATH += $(addprefix ${makefile_dir}/, $(shell cat ${makefile_dir}/directories)) -VPATH := ${src_root} $(addprefix ${src_root}/, $(shell cat ${src_root}/directories)) +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) +src_test_inifilr := $(shell cat ${makefile_dir}/src_test_inifilr) -common_sources := $(shell cat ${src_root}/common_sources) -src_ce0l_only := $(shell cat ${src_root}/src_ce0l_only) -src_gcm_only := $(shell cat ${src_root}/src_gcm_only) -sources = ${src_ce0l_only} ${src_gcm_only} ${common_sources} +sources := $(sort ${src_ce0l} ${src_gcm} ${src_test_ozonecm} ${src_test_inter_barxy} ${src_test_fxhyp} ${src_test_inifilr}) -# 2. Objects and executable files - -obj_ce0l := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_ce0l_only}))) +cpp_macros = CPP_IIM=16,CPP_JJM=12,CPP_LLM=11 +lib_list = numer_rec_95 jumble nr_util netcdf95 netcdff -obj_gcm := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_gcm_only}))) +# 2. Objects and executable files +obj_ce0l := $(addsuffix .o, $(basename ${src_ce0l})) +obj_gcm := $(addsuffix .o, $(basename ${src_gcm})) +obj_test_ozonecm := $(addsuffix .o, $(basename ${src_test_ozonecm})) +obj_test_inter_barxy := $(addsuffix .o, $(basename ${src_test_inter_barxy})) +obj_test_fxhyp := $(addsuffix .o, $(basename ${src_test_fxhyp})) +obj_test_inifilr := $(addsuffix .o, $(basename ${src_test_inifilr})) objects := $(addsuffix .o, $(basename ${sources})) -execut = ce0l gcm - -# 3. Compiler-dependent part - -mode = debug -include Compilers/${FC}_${mode}.mk - -# 4. Rules +execut = ce0l gcm test_ozonecm test_inter_barxy test_fxhyp test_inifilr -SHELL = bash -COMPILE.f90 = $(FC) $(F90FLAGS) $(TARGET_ARCH) -c +# 3. Rules -%.o: %.f90 - $(COMPILE.f90) $(OUTPUT_OPTION) $< - -.DELETE_ON_ERROR: -.PHONY: all clean clobber depend 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} +test_inifilr: ${obj_test_inifilr} -depend ${src_root}/depend.mk: - makedepf90 -Wmissing -Wconfused $(addprefix -I, ${VPATH}) -nosrc $(addprefix -u , netcdf numer_rec_95 netcdf95 nr_util jumble) ${sources} >${src_root}/depend.mk - -${src_root}/TAGS: ${sources} - ctags -e --language-force=fortran -f $@ $^ +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 clean: rm -f ${execut} ${objects} log -clobber: clean - rm -f *.mod ${src_root}/depend.mk ${src_root}/TAGS - -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