ruby-dcl 1.6.3.1 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/ChangeLog +57 -1
- data/Gemfile +4 -0
- data/GenWrapper/Makefile +1 -0
- data/GenWrapper/dcl_rb_heading +2 -8
- data/GenWrapper/elim_ary_size.rb +1 -1
- data/GenWrapper/proto/Makefile +17 -16
- data/GenWrapper/proto/grph1_sgpack.fp +367 -1
- data/GenWrapper/proto/grph1_stpack.fp +45 -1
- data/GenWrapper/proto/grph1_swpack.fp +70 -1
- data/GenWrapper/proto/grph2_uipack.fp +508 -0
- data/GenWrapper/proto/math1_clsplib.fp +74 -0
- data/GenWrapper/proto/misc1_randlib.fp +15 -1
- data/README.md +29 -0
- data/Rakefile +18 -38
- data/dcl_narrayed_funcs.c +23 -22
- data/dcl_rubydcloriginal.c +21 -21
- data/demo/grph2/uipack/uipk01.rb +38 -0
- data/demo/grph2/uipack/uipk02.rb +48 -0
- data/demo/grph2/umpack/test09_2.rb +89 -0
- data/demo/math1/clsplib/cslb01.rb +55 -0
- data/extconf.rb +16 -48
- data/grph1_sgpack.c +1166 -0
- data/grph1_stpack.c +141 -0
- data/grph1_swpack.c +182 -0
- data/grph2_uipack.c +1456 -0
- data/init.c.default +8 -0
- data/lib/.keepme +0 -0
- data/lib/dcl/dcl.rb +5578 -0
- data/lib/dcl/version.rb +3 -0
- data/lib/dcl.rb +2 -5084
- data/math1_clsplib.c +329 -0
- data/misc1_randlib.c +37 -0
- data/ruby-dcl.gemspec +30 -0
- metadata +343 -352
- data/GenWrapper/etc/Mk_proto +0 -375
- data/GenWrapper/etc/dcl_gen +0 -13
- data/GenWrapper/etc/p_init +0 -410
- data/GenWrapper/proto/math2_shtlib.fp_old +0 -1294
- data/README_old +0 -79
- data/dummy.c +0 -9
- data/grph1_zgpack.c.org +0 -141
- data/init.c.gtk +0 -189
data/GenWrapper/etc/Mk_proto
DELETED
@@ -1,375 +0,0 @@
|
|
1
|
-
SRCS = \
|
2
|
-
../../grph1_csgi.c ../../grph1_scpack.c ../../grph1_sgpack.c \
|
3
|
-
../../grph1_slpack.c ../../grph1_stpack.c ../../grph1_swpack.c \
|
4
|
-
../../grph2_grpack.c ../../grph2_ucpack.c ../../grph2_udpack.c \
|
5
|
-
../../grph2_uepack.c ../../grph2_ugpack.c ../../grph2_uhpack.c \
|
6
|
-
../../grph2_ulpack.c ../../grph2_umpack.c ../../grph2_uspack.c \
|
7
|
-
../../grph2_uupack.c ../../grph2_uvpack.c ../../grph2_uwpack.c \
|
8
|
-
../../grph2_uxpack.c ../../grph2_uypack.c ../../grph2_uzpack.c \
|
9
|
-
../../math1_blklib.c ../../math1_chrlib.c ../../math1_fnclib.c \
|
10
|
-
../../math1_gnmlib.c ../../math1_ifalib.c ../../math1_indxlib.c \
|
11
|
-
../../math1_intlib.c ../../math1_lrllib.c ../../math1_oslib.c \
|
12
|
-
../../math1_rfalib.c ../../math1_rfblib.c ../../math1_sublib.c \
|
13
|
-
../../math1_syslib.c ../../math1_vialib.c ../../math1_viblib.c \
|
14
|
-
../../math1_vralib.c ../../math1_vrblib.c ../../math1_xfclib.c \
|
15
|
-
../../math2_fftlib.c ../../math2_intrlib.c ../../math2_rnmlib.c \
|
16
|
-
../../math2_shtlib.c ../../math2_vstlib.c ../../misc1_chnlib.c \
|
17
|
-
../../misc1_datelib.c ../../misc1_fmtlib.c ../../misc1_misclib.c \
|
18
|
-
../../misc1_randlib.c ../../misc1_timelib.c
|
19
|
-
# ../../math2_odelib.c
|
20
|
-
|
21
|
-
all: $(SRCS)
|
22
|
-
|
23
|
-
../../grph1_csgi.c: grph1_csgi.fp ../etc/p_header
|
24
|
-
cd ../ ; \
|
25
|
-
cat etc/p_header > ../grph1_csgi.c ; \
|
26
|
-
ruby proto2c.rb proto/grph1_csgi.fp >> ../grph1_csgi.c ; \
|
27
|
-
ruby cproto2init.rb ../grph1_csgi.c >> ../grph1_csgi.c ; \
|
28
|
-
cd proto
|
29
|
-
|
30
|
-
../../grph1_scpack.c: grph1_scpack.fp ../etc/p_header
|
31
|
-
cd ../ ; \
|
32
|
-
cat etc/p_header > ../grph1_scpack.c ; \
|
33
|
-
ruby proto2c.rb proto/grph1_scpack.fp >> ../grph1_scpack.c ; \
|
34
|
-
ruby cproto2init.rb ../grph1_scpack.c >> ../grph1_scpack.c ; \
|
35
|
-
cd proto
|
36
|
-
|
37
|
-
../../grph1_sgpack.c: grph1_sgpack.fp ../etc/p_header
|
38
|
-
cd ../ ; \
|
39
|
-
cat etc/p_header > ../grph1_sgpack.c ; \
|
40
|
-
ruby proto2c.rb proto/grph1_sgpack.fp >> ../grph1_sgpack.c ; \
|
41
|
-
ruby cproto2init.rb ../grph1_sgpack.c >> ../grph1_sgpack.c ; \
|
42
|
-
cd proto
|
43
|
-
|
44
|
-
../../grph1_slpack.c: grph1_slpack.fp ../etc/p_header
|
45
|
-
cd ../ ; \
|
46
|
-
cat etc/p_header > ../grph1_slpack.c ; \
|
47
|
-
ruby proto2c.rb proto/grph1_slpack.fp >> ../grph1_slpack.c ; \
|
48
|
-
ruby cproto2init.rb ../grph1_slpack.c >> ../grph1_slpack.c ; \
|
49
|
-
cd proto
|
50
|
-
|
51
|
-
../../grph1_stpack.c: grph1_stpack.fp ../etc/p_header
|
52
|
-
cd ../ ; \
|
53
|
-
cat etc/p_header > ../grph1_stpack.c ; \
|
54
|
-
ruby proto2c.rb proto/grph1_stpack.fp >> ../grph1_stpack.c ; \
|
55
|
-
ruby cproto2init.rb ../grph1_stpack.c >> ../grph1_stpack.c ; \
|
56
|
-
cd proto
|
57
|
-
|
58
|
-
../../grph1_swpack.c: grph1_swpack.fp ../etc/p_header
|
59
|
-
cd ../ ; \
|
60
|
-
cat etc/p_header > ../grph1_swpack.c ; \
|
61
|
-
ruby proto2c.rb proto/grph1_swpack.fp >> ../grph1_swpack.c ; \
|
62
|
-
ruby cproto2init.rb ../grph1_swpack.c >> ../grph1_swpack.c ; \
|
63
|
-
cd proto
|
64
|
-
|
65
|
-
../../grph2_grpack.c: grph2_grpack.fp ../etc/p_header
|
66
|
-
cd ../ ; \
|
67
|
-
cat etc/p_header > ../grph2_grpack.c ; \
|
68
|
-
ruby proto2c.rb proto/grph2_grpack.fp >> ../grph2_grpack.c ; \
|
69
|
-
ruby cproto2init.rb ../grph2_grpack.c >> ../grph2_grpack.c ; \
|
70
|
-
cd proto
|
71
|
-
|
72
|
-
../../grph2_ucpack.c: grph2_ucpack.fp ../etc/p_header
|
73
|
-
cd ../ ; \
|
74
|
-
cat etc/p_header > ../grph2_ucpack.c ; \
|
75
|
-
ruby proto2c.rb proto/grph2_ucpack.fp >> ../grph2_ucpack.c ; \
|
76
|
-
ruby cproto2init.rb ../grph2_ucpack.c >> ../grph2_ucpack.c ; \
|
77
|
-
cd proto
|
78
|
-
|
79
|
-
../../grph2_udpack.c: grph2_udpack.fp ../etc/p_header
|
80
|
-
cd ../ ; \
|
81
|
-
cat etc/p_header > ../grph2_udpack.c ; \
|
82
|
-
ruby proto2c.rb proto/grph2_udpack.fp >> ../grph2_udpack.c ; \
|
83
|
-
ruby cproto2init.rb ../grph2_udpack.c >> ../grph2_udpack.c ; \
|
84
|
-
cd proto
|
85
|
-
|
86
|
-
../../grph2_uepack.c: grph2_uepack.fp ../etc/p_header
|
87
|
-
cd ../ ; \
|
88
|
-
cat etc/p_header > ../grph2_uepack.c ; \
|
89
|
-
ruby proto2c.rb proto/grph2_uepack.fp >> ../grph2_uepack.c ; \
|
90
|
-
ruby cproto2init.rb ../grph2_uepack.c >> ../grph2_uepack.c ; \
|
91
|
-
cd proto
|
92
|
-
|
93
|
-
../../grph2_ugpack.c: grph2_ugpack.fp ../etc/p_header
|
94
|
-
cd ../ ; \
|
95
|
-
cat etc/p_header > ../grph2_ugpack.c ; \
|
96
|
-
ruby proto2c.rb proto/grph2_ugpack.fp >> ../grph2_ugpack.c ; \
|
97
|
-
ruby cproto2init.rb ../grph2_ugpack.c >> ../grph2_ugpack.c ; \
|
98
|
-
cd proto
|
99
|
-
|
100
|
-
../../grph2_uhpack.c: grph2_uhpack.fp ../etc/p_header
|
101
|
-
cd ../ ; \
|
102
|
-
cat etc/p_header > ../grph2_uhpack.c ; \
|
103
|
-
ruby proto2c.rb proto/grph2_uhpack.fp >> ../grph2_uhpack.c ; \
|
104
|
-
ruby cproto2init.rb ../grph2_uhpack.c >> ../grph2_uhpack.c ; \
|
105
|
-
cd proto
|
106
|
-
|
107
|
-
../../grph2_ulpack.c: grph2_ulpack.fp ../etc/p_header
|
108
|
-
cd ../ ; \
|
109
|
-
cat etc/p_header > ../grph2_ulpack.c ; \
|
110
|
-
ruby proto2c.rb proto/grph2_ulpack.fp >> ../grph2_ulpack.c ; \
|
111
|
-
ruby cproto2init.rb ../grph2_ulpack.c >> ../grph2_ulpack.c ; \
|
112
|
-
cd proto
|
113
|
-
|
114
|
-
../../grph2_umpack.c: grph2_umpack.fp ../etc/p_header
|
115
|
-
cd ../ ; \
|
116
|
-
cat etc/p_header > ../grph2_umpack.c ; \
|
117
|
-
ruby proto2c.rb proto/grph2_umpack.fp >> ../grph2_umpack.c ; \
|
118
|
-
ruby cproto2init.rb ../grph2_umpack.c >> ../grph2_umpack.c ; \
|
119
|
-
cd proto
|
120
|
-
|
121
|
-
../../grph2_uspack.c: grph2_uspack.fp ../etc/p_header
|
122
|
-
cd ../ ; \
|
123
|
-
cat etc/p_header > ../grph2_uspack.c ; \
|
124
|
-
ruby proto2c.rb proto/grph2_uspack.fp >> ../grph2_uspack.c ; \
|
125
|
-
ruby cproto2init.rb ../grph2_uspack.c >> ../grph2_uspack.c ; \
|
126
|
-
cd proto
|
127
|
-
|
128
|
-
../../grph2_uupack.c: grph2_uupack.fp ../etc/p_header
|
129
|
-
cd ../ ; \
|
130
|
-
cat etc/p_header > ../grph2_uupack.c ; \
|
131
|
-
ruby proto2c.rb proto/grph2_uupack.fp >> ../grph2_uupack.c ; \
|
132
|
-
ruby cproto2init.rb ../grph2_uupack.c >> ../grph2_uupack.c ; \
|
133
|
-
cd proto
|
134
|
-
|
135
|
-
../../grph2_uvpack.c: grph2_uvpack.fp ../etc/p_header
|
136
|
-
cd ../ ; \
|
137
|
-
cat etc/p_header > ../grph2_uvpack.c ; \
|
138
|
-
ruby proto2c.rb proto/grph2_uvpack.fp >> ../grph2_uvpack.c ; \
|
139
|
-
ruby cproto2init.rb ../grph2_uvpack.c >> ../grph2_uvpack.c ; \
|
140
|
-
cd proto
|
141
|
-
|
142
|
-
../../grph2_uwpack.c: grph2_uwpack.fp ../etc/p_header
|
143
|
-
cd ../ ; \
|
144
|
-
cat etc/p_header > ../grph2_uwpack.c ; \
|
145
|
-
ruby proto2c.rb proto/grph2_uwpack.fp >> ../grph2_uwpack.c ; \
|
146
|
-
ruby cproto2init.rb ../grph2_uwpack.c >> ../grph2_uwpack.c ; \
|
147
|
-
cd proto
|
148
|
-
|
149
|
-
../../grph2_uxpack.c: grph2_uxpack.fp ../etc/p_header
|
150
|
-
cd ../ ; \
|
151
|
-
cat etc/p_header > ../grph2_uxpack.c ; \
|
152
|
-
ruby proto2c.rb proto/grph2_uxpack.fp >> ../grph2_uxpack.c ; \
|
153
|
-
ruby cproto2init.rb ../grph2_uxpack.c >> ../grph2_uxpack.c ; \
|
154
|
-
cd proto
|
155
|
-
|
156
|
-
../../grph2_uypack.c: grph2_uypack.fp ../etc/p_header
|
157
|
-
cd ../ ; \
|
158
|
-
cat etc/p_header > ../grph2_uypack.c ; \
|
159
|
-
ruby proto2c.rb proto/grph2_uypack.fp >> ../grph2_uypack.c ; \
|
160
|
-
ruby cproto2init.rb ../grph2_uypack.c >> ../grph2_uypack.c ; \
|
161
|
-
cd proto
|
162
|
-
|
163
|
-
../../grph2_uzpack.c: grph2_uzpack.fp ../etc/p_header
|
164
|
-
cd ../ ; \
|
165
|
-
cat etc/p_header > ../grph2_uzpack.c ; \
|
166
|
-
ruby proto2c.rb proto/grph2_uzpack.fp >> ../grph2_uzpack.c ; \
|
167
|
-
ruby cproto2init.rb ../grph2_uzpack.c >> ../grph2_uzpack.c ; \
|
168
|
-
cd proto
|
169
|
-
|
170
|
-
../../math1_blklib.c: math1_blklib.fp ../etc/p_header
|
171
|
-
cd ../ ; \
|
172
|
-
cat etc/p_header > ../math1_blklib.c ; \
|
173
|
-
ruby proto2c.rb proto/math1_blklib.fp >> ../math1_blklib.c ; \
|
174
|
-
ruby cproto2init.rb ../math1_blklib.c >> ../math1_blklib.c ; \
|
175
|
-
cd proto
|
176
|
-
|
177
|
-
../../math1_chrlib.c: math1_chrlib.fp ../etc/p_header
|
178
|
-
cd ../ ; \
|
179
|
-
cat etc/p_header > ../math1_chrlib.c ; \
|
180
|
-
ruby proto2c.rb proto/math1_chrlib.fp >> ../math1_chrlib.c ; \
|
181
|
-
ruby cproto2init.rb ../math1_chrlib.c >> ../math1_chrlib.c ; \
|
182
|
-
cd proto
|
183
|
-
|
184
|
-
../../math1_fnclib.c: math1_fnclib.fp ../etc/p_header
|
185
|
-
cd ../ ; \
|
186
|
-
cat etc/p_header > ../math1_fnclib.c ; \
|
187
|
-
ruby proto2c.rb proto/math1_fnclib.fp >> ../math1_fnclib.c ; \
|
188
|
-
ruby cproto2init.rb ../math1_fnclib.c >> ../math1_fnclib.c ; \
|
189
|
-
cd proto
|
190
|
-
|
191
|
-
../../math1_gnmlib.c: math1_gnmlib.fp ../etc/p_header
|
192
|
-
cd ../ ; \
|
193
|
-
cat etc/p_header > ../math1_gnmlib.c ; \
|
194
|
-
ruby proto2c.rb proto/math1_gnmlib.fp >> ../math1_gnmlib.c ; \
|
195
|
-
ruby cproto2init.rb ../math1_gnmlib.c >> ../math1_gnmlib.c ; \
|
196
|
-
cd proto
|
197
|
-
|
198
|
-
../../math1_ifalib.c: math1_ifalib.fp ../etc/p_header
|
199
|
-
cd ../ ; \
|
200
|
-
cat etc/p_header > ../math1_ifalib.c ; \
|
201
|
-
ruby proto2c.rb proto/math1_ifalib.fp >> ../math1_ifalib.c ; \
|
202
|
-
ruby cproto2init.rb ../math1_ifalib.c >> ../math1_ifalib.c ; \
|
203
|
-
cd proto
|
204
|
-
|
205
|
-
../../math1_indxlib.c: math1_indxlib.fp ../etc/p_header
|
206
|
-
cd ../ ; \
|
207
|
-
cat etc/p_header > ../math1_indxlib.c ; \
|
208
|
-
ruby proto2c.rb proto/math1_indxlib.fp >> ../math1_indxlib.c ; \
|
209
|
-
ruby cproto2init.rb ../math1_indxlib.c >> ../math1_indxlib.c ; \
|
210
|
-
cd proto
|
211
|
-
|
212
|
-
../../math1_intlib.c: math1_intlib.fp ../etc/p_header
|
213
|
-
cd ../ ; \
|
214
|
-
cat etc/p_header > ../math1_intlib.c ; \
|
215
|
-
ruby proto2c.rb proto/math1_intlib.fp >> ../math1_intlib.c ; \
|
216
|
-
ruby cproto2init.rb ../math1_intlib.c >> ../math1_intlib.c ; \
|
217
|
-
cd proto
|
218
|
-
|
219
|
-
../../math1_lrllib.c: math1_lrllib.fp ../etc/p_header
|
220
|
-
cd ../ ; \
|
221
|
-
cat etc/p_header > ../math1_lrllib.c ; \
|
222
|
-
ruby proto2c.rb proto/math1_lrllib.fp >> ../math1_lrllib.c ; \
|
223
|
-
ruby cproto2init.rb ../math1_lrllib.c >> ../math1_lrllib.c ; \
|
224
|
-
cd proto
|
225
|
-
|
226
|
-
../../math1_oslib.c: math1_oslib.fp ../etc/p_header
|
227
|
-
cd ../ ; \
|
228
|
-
cat etc/p_header > ../math1_oslib.c ; \
|
229
|
-
ruby proto2c.rb proto/math1_oslib.fp >> ../math1_oslib.c ; \
|
230
|
-
ruby cproto2init.rb ../math1_oslib.c >> ../math1_oslib.c ; \
|
231
|
-
cd proto
|
232
|
-
|
233
|
-
../../math1_rfalib.c: math1_rfalib.fp ../etc/p_header
|
234
|
-
cd ../ ; \
|
235
|
-
cat etc/p_header > ../math1_rfalib.c ; \
|
236
|
-
ruby proto2c.rb proto/math1_rfalib.fp >> ../math1_rfalib.c ; \
|
237
|
-
ruby cproto2init.rb ../math1_rfalib.c >> ../math1_rfalib.c ; \
|
238
|
-
cd proto
|
239
|
-
|
240
|
-
../../math1_rfblib.c: math1_rfblib.fp ../etc/p_header
|
241
|
-
cd ../ ; \
|
242
|
-
cat etc/p_header > ../math1_rfblib.c ; \
|
243
|
-
ruby proto2c.rb proto/math1_rfblib.fp >> ../math1_rfblib.c ; \
|
244
|
-
ruby cproto2init.rb ../math1_rfblib.c >> ../math1_rfblib.c ; \
|
245
|
-
cd proto
|
246
|
-
|
247
|
-
../../math1_sublib.c: math1_sublib.fp ../etc/p_header
|
248
|
-
cd ../ ; \
|
249
|
-
cat etc/p_header > ../math1_sublib.c ; \
|
250
|
-
ruby proto2c.rb proto/math1_sublib.fp >> ../math1_sublib.c ; \
|
251
|
-
ruby cproto2init.rb ../math1_sublib.c >> ../math1_sublib.c ; \
|
252
|
-
cd proto
|
253
|
-
|
254
|
-
../../math1_syslib.c: math1_syslib.fp ../etc/p_header
|
255
|
-
cd ../ ; \
|
256
|
-
cat etc/p_header > ../math1_syslib.c ; \
|
257
|
-
ruby proto2c.rb proto/math1_syslib.fp >> ../math1_syslib.c ; \
|
258
|
-
ruby cproto2init.rb ../math1_syslib.c >> ../math1_syslib.c ; \
|
259
|
-
cd proto
|
260
|
-
|
261
|
-
../../math1_vialib.c: math1_vialib.fp ../etc/p_header
|
262
|
-
cd ../ ; \
|
263
|
-
cat etc/p_header > ../math1_vialib.c ; \
|
264
|
-
ruby proto2c.rb proto/math1_vialib.fp >> ../math1_vialib.c ; \
|
265
|
-
ruby cproto2init.rb ../math1_vialib.c >> ../math1_vialib.c ; \
|
266
|
-
cd proto
|
267
|
-
|
268
|
-
../../math1_viblib.c: math1_viblib.fp ../etc/p_header
|
269
|
-
cd ../ ; \
|
270
|
-
cat etc/p_header > ../math1_viblib.c ; \
|
271
|
-
ruby proto2c.rb proto/math1_viblib.fp >> ../math1_viblib.c ; \
|
272
|
-
ruby cproto2init.rb ../math1_viblib.c >> ../math1_viblib.c ; \
|
273
|
-
cd proto
|
274
|
-
|
275
|
-
../../math1_vralib.c: math1_vralib.fp ../etc/p_header
|
276
|
-
cd ../ ; \
|
277
|
-
cat etc/p_header > ../math1_vralib.c ; \
|
278
|
-
ruby proto2c.rb proto/math1_vralib.fp >> ../math1_vralib.c ; \
|
279
|
-
ruby cproto2init.rb ../math1_vralib.c >> ../math1_vralib.c ; \
|
280
|
-
cd proto
|
281
|
-
|
282
|
-
../../math1_vrblib.c: math1_vrblib.fp ../etc/p_header
|
283
|
-
cd ../ ; \
|
284
|
-
cat etc/p_header > ../math1_vrblib.c ; \
|
285
|
-
ruby proto2c.rb proto/math1_vrblib.fp >> ../math1_vrblib.c ; \
|
286
|
-
ruby cproto2init.rb ../math1_vrblib.c >> ../math1_vrblib.c ; \
|
287
|
-
cd proto
|
288
|
-
|
289
|
-
../../math1_xfclib.c: math1_xfclib.fp ../etc/p_header
|
290
|
-
cd ../ ; \
|
291
|
-
cat etc/p_header > ../math1_xfclib.c ; \
|
292
|
-
ruby proto2c.rb proto/math1_xfclib.fp >> ../math1_xfclib.c ; \
|
293
|
-
ruby cproto2init.rb ../math1_xfclib.c >> ../math1_xfclib.c ; \
|
294
|
-
cd proto
|
295
|
-
|
296
|
-
../../math2_fftlib.c: math2_fftlib.fp ../etc/p_header
|
297
|
-
cd ../ ; \
|
298
|
-
cat etc/p_header > ../math2_fftlib.c ; \
|
299
|
-
ruby proto2c.rb proto/math2_fftlib.fp >> ../math2_fftlib.c ; \
|
300
|
-
ruby cproto2init.rb ../math2_fftlib.c >> ../math2_fftlib.c ; \
|
301
|
-
cd proto
|
302
|
-
|
303
|
-
../../math2_intrlib.c: math2_intrlib.fp ../etc/p_header
|
304
|
-
cd ../ ; \
|
305
|
-
cat etc/p_header > ../math2_intrlib.c ; \
|
306
|
-
ruby proto2c.rb proto/math2_intrlib.fp >> ../math2_intrlib.c ; \
|
307
|
-
ruby cproto2init.rb ../math2_intrlib.c >> ../math2_intrlib.c ; \
|
308
|
-
cd proto
|
309
|
-
|
310
|
-
../../math2_rnmlib.c: math2_rnmlib.fp ../etc/p_header
|
311
|
-
cd ../ ; \
|
312
|
-
cat etc/p_header > ../math2_rnmlib.c ; \
|
313
|
-
ruby proto2c.rb proto/math2_rnmlib.fp >> ../math2_rnmlib.c ; \
|
314
|
-
ruby cproto2init.rb ../math2_rnmlib.c >> ../math2_rnmlib.c ; \
|
315
|
-
cd proto
|
316
|
-
|
317
|
-
../../math2_shtlib.c: math2_shtlib.fp ../etc/p_header
|
318
|
-
cd ../ ; \
|
319
|
-
cat etc/p_header > ../math2_shtlib.c ; \
|
320
|
-
ruby proto2c.rb proto/math2_shtlib.fp >> ../math2_shtlib.c ; \
|
321
|
-
ruby cproto2init.rb ../math2_shtlib.c >> ../math2_shtlib.c ; \
|
322
|
-
cd proto
|
323
|
-
|
324
|
-
../../math2_vstlib.c: math2_vstlib.fp ../etc/p_header
|
325
|
-
cd ../ ; \
|
326
|
-
cat etc/p_header > ../math2_vstlib.c ; \
|
327
|
-
ruby proto2c.rb proto/math2_vstlib.fp >> ../math2_vstlib.c ; \
|
328
|
-
ruby cproto2init.rb ../math2_vstlib.c >> ../math2_vstlib.c ; \
|
329
|
-
cd proto
|
330
|
-
|
331
|
-
../../misc1_chnlib.c: misc1_chnlib.fp ../etc/p_header
|
332
|
-
cd ../ ; \
|
333
|
-
cat etc/p_header > ../misc1_chnlib.c ; \
|
334
|
-
ruby proto2c.rb proto/misc1_chnlib.fp >> ../misc1_chnlib.c ; \
|
335
|
-
ruby cproto2init.rb ../misc1_chnlib.c >> ../misc1_chnlib.c ; \
|
336
|
-
cd proto
|
337
|
-
|
338
|
-
../../misc1_datelib.c: misc1_datelib.fp ../etc/p_header
|
339
|
-
cd ../ ; \
|
340
|
-
cat etc/p_header > ../misc1_datelib.c ; \
|
341
|
-
ruby proto2c.rb proto/misc1_datelib.fp >> ../misc1_datelib.c ; \
|
342
|
-
ruby cproto2init.rb ../misc1_datelib.c >> ../misc1_datelib.c ; \
|
343
|
-
cd proto
|
344
|
-
|
345
|
-
../../misc1_fmtlib.c: misc1_fmtlib.fp ../etc/p_header
|
346
|
-
cd ../ ; \
|
347
|
-
cat etc/p_header > ../misc1_fmtlib.c ; \
|
348
|
-
ruby proto2c.rb proto/misc1_fmtlib.fp >> ../misc1_fmtlib.c ; \
|
349
|
-
ruby cproto2init.rb ../misc1_fmtlib.c >> ../misc1_fmtlib.c ; \
|
350
|
-
cd proto
|
351
|
-
|
352
|
-
../../misc1_misclib.c: misc1_misclib.fp ../etc/p_header
|
353
|
-
cd ../ ; \
|
354
|
-
cat etc/p_header > ../misc1_misclib.c ; \
|
355
|
-
ruby proto2c.rb proto/misc1_misclib.fp >> ../misc1_misclib.c ; \
|
356
|
-
ruby cproto2init.rb ../misc1_misclib.c >> ../misc1_misclib.c ; \
|
357
|
-
cd proto
|
358
|
-
|
359
|
-
../../misc1_randlib.c: misc1_randlib.fp ../etc/p_header
|
360
|
-
cd ../ ; \
|
361
|
-
cat etc/p_header > ../misc1_randlib.c ; \
|
362
|
-
ruby proto2c.rb proto/misc1_randlib.fp >> ../misc1_randlib.c ; \
|
363
|
-
ruby cproto2init.rb ../misc1_randlib.c >> ../misc1_randlib.c ; \
|
364
|
-
cd proto
|
365
|
-
|
366
|
-
../../misc1_timelib.c: misc1_timelib.fp ../etc/p_header
|
367
|
-
cd ../ ; \
|
368
|
-
cat etc/p_header > ../misc1_timelib.c ; \
|
369
|
-
ruby proto2c.rb proto/misc1_timelib.fp >> ../misc1_timelib.c ; \
|
370
|
-
ruby cproto2init.rb ../misc1_timelib.c >> ../misc1_timelib.c ; \
|
371
|
-
cd proto
|
372
|
-
|
373
|
-
clean:
|
374
|
-
$(RM) $(SRCS) ;
|
375
|
-
|
data/GenWrapper/etc/dcl_gen
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
#!/bin/sh
|
2
|
-
# $Id: dcl_gen,v 1.2 2011-02-23 17:47:10 koshiro Exp $
|
3
|
-
|
4
|
-
cd ../
|
5
|
-
###ruby proto2c.rb proto/grph*.f77proto proto/math1.f77proto > code
|
6
|
-
###ruby proto2c.rb proto/grph*.f77proto proto/math1.f77proto proto/misc1.f77proto > code
|
7
|
-
#ruby proto2c.rb proto/*.fp > code
|
8
|
-
ruby proto2c.rb proto/g*.fp proto/m*1_*.fp proto/math2_[^o]*.fp > code
|
9
|
-
|
10
|
-
cat etc/p_header > ../dcl.c
|
11
|
-
cat code >> ../dcl.c
|
12
|
-
cat etc/p_init >> ../dcl.c
|
13
|
-
|