--- trunk/GNUmakefile 2014/03/05 14:57:53 82 +++ trunk/Compilation/GNUmakefile 2014/04/25 14:58:31 97 @@ -4,22 +4,20 @@ # 1. Source files -src_root = . +makefile_dir = . -VPATH := ${src_root} $(addprefix ${src_root}/, $(shell cat ${src_root}/directories)) +VPATH := ${makefile_dir}/.. $(addprefix ${makefile_dir}/../, $(shell cat ${makefile_dir}/directories)) -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) +common_sources := $(shell cat ${makefile_dir}/common_sources) +src_ce0l_only := $(shell cat ${makefile_dir}/src_ce0l_only) +src_gcm_only := $(shell cat ${makefile_dir}/src_gcm_only) sources = ${src_ce0l_only} ${src_gcm_only} ${common_sources} # 2. Objects and executable files -obj_ce0l := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_ce0l_only}))) - -obj_gcm := $(addsuffix .o, $(sort $(basename ${common_sources} ${src_gcm_only}))) - -objects := $(addsuffix .o, $(basename ${sources})) +obj_ce0l := $(sort ${common_sources:.f=.o} ${src_ce0l_only:.f=.o}) +obj_gcm := $(sort ${common_sources:.f=.o} ${src_gcm_only:.f=.o}) +objects := $(sources:.f=.o) execut = ce0l gcm # 3. Compiler-dependent part @@ -40,25 +38,25 @@ ce0l: ${obj_ce0l} gcm: ${obj_gcm} -depend ${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 +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: ${sources} - ctags -e --language-force=fortran -f $@ $^ +TAGS: ${sources} + ctags -e --language-force=fortran $^ clean: 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 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