/[lmdze]/trunk/GNUmakefile
ViewVC logotype

Annotation of /trunk/GNUmakefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 313 - (hide annotations)
Mon Dec 10 15:54:30 2018 UTC (5 years, 5 months ago) by guez
File size: 1963 byte(s)
Remove module temps. Move variable itau_dyn from module temps to
module dynetat0_m, where it is defined.

Split module dynetat0_m into dynetat0_m and dynetat0_chosen_m. The
motivation is to create smaller modules. Procedures principal_cshift
and invert_zoomx had to stay in dynetat0_m because of circular
dependency. Now we will be able to move them away. Module variables
which are chosen by the user, not computed, in program ce0l go to
dynetat0_chosen_m: day_ref, annee_ref, clon, clat, grossismx,
grossismy, dzoomx, dzoomy, taux, tauy.

Move variable "pa" from module disvert_m to module
dynetat0_chosen_m. Define "pa" in dynetat0_chosen rather than etat0.

Define day_ref and annee_ref in procedure read_serre rather than
etat0.

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

  ViewVC Help
Powered by ViewVC 1.1.21