/[lmdze]/trunk/GNUmakefile
ViewVC logotype

Contents of /trunk/GNUmakefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 291 - (show annotations)
Wed Jul 25 14:15:44 2018 UTC (5 years, 9 months ago) by guez
File size: 2070 byte(s)
Use named constant f_ri_cd_min in procedure cdrag (following LMDZ).
Remove some intermediary variables.

1 # This is a makefile for GNU make.
2
3 # This makefile builds LMDZE.
4
5 # 1. Source files
6
7 makefile_dir = .
8
9 VPATH := ${makefile_dir} $(addprefix ${makefile_dir}/, $(shell cat ${makefile_dir}/directories))
10
11 src_ce0l := $(shell cat ${makefile_dir}/src_ce0l)
12 src_gcm := $(shell cat ${makefile_dir}/src_gcm)
13 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 src_test_inifilr := $(shell cat ${makefile_dir}/src_test_inifilr)
17
18 sources := $(sort ${src_ce0l} ${src_gcm} ${src_test_ozonecm} ${src_test_inter_barxy} ${src_test_fxhyp} ${src_test_inifilr})
19
20 cpp_macros = CPP_IIM=16,CPP_JJM=12,CPP_LLM=11
21 lib_list = numer_rec_95 jumble nr_util netcdf95 netcdff
22
23 # 2. Objects and executable files
24
25 obj_ce0l := $(addsuffix .o, $(basename ${src_ce0l}))
26 obj_gcm := $(addsuffix .o, $(basename ${src_gcm}))
27 obj_test_ozonecm := $(addsuffix .o, $(basename ${src_test_ozonecm}))
28 obj_test_inter_barxy := $(addsuffix .o, $(basename ${src_test_inter_barxy}))
29 obj_test_fxhyp := $(addsuffix .o, $(basename ${src_test_fxhyp}))
30 obj_test_inifilr := $(addsuffix .o, $(basename ${src_test_inifilr}))
31 objects := $(addsuffix .o, $(basename ${sources}))
32 execut = ce0l gcm test_ozonecm test_inter_barxy test_fxhyp test_inifilr
33
34 # 3. Compiler-dependent part
35
36 include ${general_compiler_options_dir}/settings.mk
37
38 # 4. Rules
39
40 all: ${execut} log
41 ce0l: ${obj_ce0l}
42 gcm: ${obj_gcm}
43 test_ozonecm: ${obj_test_ozonecm}
44 test_inter_barxy: ${obj_test_inter_barxy}
45 test_fxhyp: ${obj_test_fxhyp}
46 test_inifilr: ${obj_test_inifilr}
47
48 depend ${makefile_dir}/depend.mk:
49 makedepf90 -free -Wmissing -Wconfused $(addprefix -I, ${VPATH}) -nosrc $(addprefix -u , netcdf numer_rec_95 netcdf95 nr_util jumble) ${sources} >${makefile_dir}/depend.mk
50
51 clean:
52 rm -f ${execut} ${objects} log
53
54 clobber: clean
55 rm -f *.mod ${makefile_dir}/depend.mk TAGS
56
57 ifeq ($(findstring $(MAKECMDGOALS), clobber depend),)
58 include ${makefile_dir}/depend.mk
59 endif
60
61 -include grep.mk
62 -include nag_rules.mk

  ViewVC Help
Powered by ViewVC 1.1.21