/[lmdze]/trunk/GNUmakefile
ViewVC logotype

Annotation of /trunk/GNUmakefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 138 - (hide annotations)
Fri May 22 23:13:19 2015 UTC (8 years, 11 months ago) by guez
File size: 1957 byte(s)
Moved variable nb_files from module histcom_var to module
histbeg_totreg_m.

Removed unused argument q of writehist.

No history file is created in program ce0l so there is no need to call
histclo in etat0.

In phyredem, access variables rlat and rlon directly from module
phyetat0_m instead of having them as arguments. This is clearer for
the program gcm. There are bad side effects for the program ce0l: we
have to modify the module variables rlat and rlon in procedure etat0,
and we need the additional file phyetat0.f to compile ce0l.

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 97 makefile_dir = .
8 guez 3
9 guez 135 VPATH := ${makefile_dir}/Sources $(addprefix ${makefile_dir}/Sources/, $(shell cat ${makefile_dir}/directories))
10 guez 3
11 guez 123 src_ce0l := $(shell cat ${makefile_dir}/src_ce0l)
12     src_gcm := $(shell cat ${makefile_dir}/src_gcm)
13 guez 131 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 guez 3
17 guez 131 sources := $(sort ${src_ce0l} ${src_gcm} ${src_test_ozonecm} ${src_test_inter_barxy} ${src_test_fxhyp})
18 guez 123
19 guez 79 # 2. Objects and executable files
20 guez 71
21 guez 123 obj_ce0l := $(src_ce0l:.f=.o)
22     obj_gcm := $(src_gcm:.f=.o)
23     obj_test_ozonecm := $(src_test_ozonecm:.f=.o)
24     obj_test_inter_barxy := $(src_test_inter_barxy:.f=.o)
25     obj_test_fxhyp := $(src_test_fxhyp:.f=.o)
26 guez 83 objects := $(sources:.f=.o)
27 guez 123 execut = ce0l gcm test_ozonecm test_inter_barxy test_fxhyp
28 guez 62
29 guez 69 # 3. Compiler-dependent part
30 guez 70
31 guez 69 mode = debug
32 guez 81 include Compiler_options/${FC}_${mode}.mk
33 guez 3
34 guez 62 # 4. Rules
35    
36 guez 69 SHELL = bash
37 guez 138 LINK.o = $(FC) $(LDFLAGS) $(TARGET_ARCH)
38 guez 78 .DELETE_ON_ERROR:
39 guez 69 .PHONY: all clean clobber depend
40 guez 79 all: ${execut} log
41 guez 70 ce0l: ${obj_ce0l}
42 guez 3 gcm: ${obj_gcm}
43 guez 123 test_ozonecm: ${obj_test_ozonecm}
44     test_inter_barxy: ${obj_test_inter_barxy}
45     test_fxhyp: ${obj_test_fxhyp}
46 guez 3
47 guez 97 depend ${makefile_dir}/depend.mk:
48     makedepf90 -free -Wmissing -Wconfused $(addprefix -I, ${VPATH}) -nosrc $(addprefix -u , netcdf numer_rec_95 netcdf95 nr_util jumble) ${sources} >${makefile_dir}/depend.mk
49 guez 61
50 guez 94 TAGS: ${sources}
51     ctags -e --language-force=fortran $^
52 guez 3
53     clean:
54 guez 79 rm -f ${execut} ${objects} log
55 guez 3
56     clobber: clean
57 guez 97 rm -f *.mod ${makefile_dir}/depend.mk TAGS
58 guez 3
59 guez 79 log:
60     hostname >$@
61     ${FC} ${version_flag} >>$@ 2>&1
62 guez 69 echo -e "\nFC = ${FC}\n\nFFLAGS = ${FFLAGS}\n\nLDLIBS = ${LDLIBS}\n\nLDFLAGS = ${LDFLAGS}" >>$@
63 guez 62
64 guez 90 ifeq ($(findstring $(MAKECMDGOALS), clobber depend),)
65 guez 97 include ${makefile_dir}/depend.mk
66 guez 78 endif
67 guez 3
68     -include grep.mk
69 guez 7 -include nag_rules.mk

  ViewVC Help
Powered by ViewVC 1.1.21