blob: 8b76b2b687402366f3068994e19f7777c0b0cf15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
--
-- File: WNT_WOKUMake.edl
-- Author: Jean GAUTIER
-- History: Thu Oct 3 13:12:20 1996 Jean GAUTIER Creation
-- Copyright: Matra Datavision 1996
--
@ifnotdefined ( %WNT_WOKUMake_EDL) then
@set %WNT_WOKUMake_EDL = "";
@uses "WNT.edl";
@if ( %Station == "sun" ) then
-- Pas de WNT sur SUN
@set %WOKUMake_Steps = "";
@string %WOKUMake_Steps = %WOKUMake_Steps "*src ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.fill(src) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.src(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.header(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps ".xcpp.template(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " obj.inc(src,xcpp.src) ";
@endif;
@if ( %Station == "sil" ) then
-- Pas de WNT sur SGI
@set %WOKUMake_Steps = "";
@string %WOKUMake_Steps = %WOKUMake_Steps "*src ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.fill(src) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.src(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.header(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps ".xcpp.template(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " obj.inc(src,xcpp.src) ";
@endif;
@if ( %Station == "ao1" ) then
-- Pas de WNT sur DEC
@set %WOKUMake_Steps = "";
@string %WOKUMake_Steps = %WOKUMake_Steps "*src ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.fill(src) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.src(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.header(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps ".xcpp.template(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " obj.inc(src,xcpp.src) ";
@endif;
@if ( %Station == "hp" ) then
-- Pas de WNT sur HP
@set %WOKUMake_Steps = "";
@string %WOKUMake_Steps = %WOKUMake_Steps "*src ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.fill(src) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.src(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " xcpp.header(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps ".xcpp.template(xcpp.fill) ";
@string %WOKUMake_Steps = %WOKUMake_Steps " obj.inc(src,xcpp.src) ";
@endif;
@endif;
|