source: LMDZ5/trunk/tools/fcm/tutorial/repos/tutorial.dump

Last change on this file was 1578, checked in by jghattas, 13 years ago
  • Add fcm in LMDZ5/tools directory

It is no longer needed to have fcm in your environement PATH variable.
Now makelmdz_fcm takes by default this fcm. It is still possible to use
another fcm, using -fcm_path argument in makelmdz_fcm.

File size: 5.4 KB
Line 
1SVN-fs-dump-format-version: 3
2
3UUID: cb858ce8-0f05-0410-9e64-efa98b760b62
4
5Revision-number: 1
6Prop-content-length: 112
7Content-length: 112
8
9K 7
10svn:log
11V 14
12Initial import
13K 10
14svn:author
15V 3
16fcm
17K 8
18svn:date
19V 27
202005-11-08T16:03:11.054362Z
21PROPS-END
22
23Node-path: tutorial
24Node-kind: dir
25Node-action: add
26Prop-content-length: 10
27Content-length: 10
28
29PROPS-END
30
31
32Node-path: tutorial/trunk
33Node-kind: dir
34Node-action: add
35Prop-content-length: 10
36Content-length: 10
37
38PROPS-END
39
40
41Node-path: tutorial/trunk/cfg
42Node-kind: dir
43Node-action: add
44Prop-content-length: 10
45Content-length: 10
46
47PROPS-END
48
49
50Node-path: tutorial/trunk/cfg/ext.cfg
51Node-kind: file
52Node-action: add
53Prop-content-length: 10
54Text-content-length: 491
55Text-content-md5: ee678001bbc0789983e79d365eff2c9d
56Content-length: 501
57
58PROPS-END
59CFG::TYPE                               ext
60CFG::VERSION                            1.0
61
62DEST::ROOTDIR                           $PWD
63
64REPOS::tutorial::trunk                  fcm:tutorial_tr/src
65EXPSRC::tutorial::trunk
66
67BLD::TOOL::FC                           ifc
68BLD::TOOL::FFLAGS                       -O3
69
70BLD::TOOL::CC                           gcc
71BLD::TOOL::CFLAGS                       -O3
72
73BLD::TOOL::FFLAGS::tutorial::subroutine -O3 -i8
74
75BLD::TOOL::LD                           ifc
76
77
78Node-path: tutorial/trunk/doc
79Node-kind: dir
80Node-action: add
81Prop-content-length: 10
82Content-length: 10
83
84PROPS-END
85
86
87Node-path: tutorial/trunk/doc/hello.html
88Node-kind: file
89Node-action: add
90Prop-content-length: 10
91Text-content-length: 691
92Text-content-md5: 1cc3c9a6d7734c3667776d7a5f81162d
93Content-length: 701
94
95PROPS-END
96<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
97
98<html>
99<head>
100  <title>Hello</title>
101  <meta name="author" content="FCM Team">
102  <meta name="descriptions" content="Hello">
103  <meta name="keywords" content="hello">
104  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
105  <link rel="stylesheet" href="stylesheet.css" type="text/css">
106</head>
107
108<body>
109  <p>Hello from the FCM team!</p>
110  <hr>
111
112  <address>
113    &copy; Crown copyright <script type="text/javascript">
114    <!--
115      var mtime = new Date (document.lastModified)
116      document.write (mtime.getUTCFullYear ())
117    //-->
118    </script> Met Office. All rights reserved.
119  </address>
120</body>
121</html>
122
123
124Node-path: tutorial/trunk/src
125Node-kind: dir
126Node-action: add
127Prop-content-length: 10
128Content-length: 10
129
130PROPS-END
131
132
133Node-path: tutorial/trunk/src/subroutine
134Node-kind: dir
135Node-action: add
136Prop-content-length: 10
137Content-length: 10
138
139PROPS-END
140
141
142Node-path: tutorial/trunk/src/subroutine/hello_c.c
143Node-kind: file
144Node-action: add
145Prop-content-length: 10
146Text-content-length: 85
147Text-content-md5: a4e47e0c187a4e16d107175808ad1699
148Content-length: 95
149
150PROPS-END
151#include <stdio.h>
152
153void hello_c_ () {
154  printf ("%s\n", "Hello_C: Hello World!");
155}
156
157
158Node-path: tutorial/trunk/src/subroutine/hello_sub.f90
159Node-kind: file
160Node-action: add
161Prop-content-length: 10
162Text-content-length: 341
163Text-content-md5: 5e7b7a11e3f94b1885356379d903fd1d
164Content-length: 351
165
166PROPS-END
167SUBROUTINE Hello_Sub
168
169USE Hello_Constants, ONLY: hello_string
170
171IMPLICIT NONE
172
173CHARACTER (LEN=*), PARAMETER :: this = 'Hello_Sub'
174INTEGER :: i
175
176! DEPENDS ON: hello_c.o
177EXTERNAL Hello_C
178
179WRITE (*, '(A)') this // ': ' // TRIM (hello_string)
180WRITE (*, '(A,I0)') this // ': maximum integer: ', HUGE (i)
181
182CALL Hello_C ()
183
184END SUBROUTINE Hello_Sub
185
186
187Node-path: tutorial/trunk/src/module
188Node-kind: dir
189Node-action: add
190Prop-content-length: 10
191Content-length: 10
192
193PROPS-END
194
195
196Node-path: tutorial/trunk/src/module/hello_constants.f90
197Node-kind: file
198Node-action: add
199Prop-content-length: 10
200Text-content-length: 115
201Text-content-md5: c57ebb7151db2032b82eae2f6712bca7
202Content-length: 125
203
204PROPS-END
205MODULE Hello_Constants
206
207CHARACTER (LEN=80), PARAMETER :: hello_string = 'Hello World!'
208
209END MODULE Hello_Constants
210
211
212Node-path: tutorial/trunk/src/program
213Node-kind: dir
214Node-action: add
215Prop-content-length: 10
216Content-length: 10
217
218PROPS-END
219
220
221Node-path: tutorial/trunk/src/program/hello.f90
222Node-kind: file
223Node-action: add
224Prop-content-length: 10
225Text-content-length: 240
226Text-content-md5: bfc42450c107f935b77d50422b85a6e7
227Content-length: 250
228
229PROPS-END
230PROGRAM Hello
231
232USE Hello_Constants, ONLY: hello_string
233
234IMPLICIT NONE
235
236INCLUDE 'hello_sub.interface'
237
238CHARACTER (LEN=*), PARAMETER :: this = 'Hello'
239
240WRITE (*, '(A)') this // ': ' // TRIM (hello_string)
241CALL Hello_Sub ()
242
243END PROGRAM Hello
244
245
246Node-path: tutorial/branches
247Node-kind: dir
248Node-action: add
249Prop-content-length: 10
250Content-length: 10
251
252PROPS-END
253
254
255Node-path: tutorial/tags
256Node-kind: dir
257Node-action: add
258Prop-content-length: 10
259Content-length: 10
260
261PROPS-END
262
263
264Revision-number: 2
265Prop-content-length: 232
266Content-length: 232
267
268K 7
269svn:log
270V 157
271Change greeting messages from ''Hello World'' to ''Hello Earth'' in C code and Fortran module. Add copyright header to Fortran module. This change fixes #1.
272
273K 8
274svn:date
275V 27
2762005-11-08T16:35:08.365632Z
277PROPS-END
278
279Node-path: tutorial/trunk/src/module/hello_constants.f90
280Node-kind: file
281Node-action: change
282Text-delta: true
283Text-content-length: 106
284Text-content-md5: 2396c2f40dde69b32a036dee9c9e9645
285Content-length: 106
286
287SVNs*[·O¤! (C) Crown copyright Met Office. All rights reserved.
288Earth!'
289
290END MODULE Hello_Constants
291
292
293Node-path: tutorial/trunk/src/subroutine/hello_c.c
294Node-kind: file
295Node-action: change
296Text-delta: true
297Text-content-length: 25
298Text-content-md5: 8c87c7a561710945bd407e9687fdedb3
299Content-length: 25
300
301SVNUUIŒEarth!");
302}
303
304
Note: See TracBrowser for help on using the repository browser.