225
|
1 $! To compile minc programs for vms |
|
2 $! |
|
3 $! Get arguments |
|
4 $ if (p1.eqs."") |
|
5 $ then |
|
6 $ write sys$output "Usage: @make objects |
|
7 $ exit |
|
8 $ endif |
|
9 $ objects = p1 |
|
10 $! |
|
11 $ ccc := cc /opt/nodebug/nolist - |
|
12 /include=([],[-.proglib],[--.src],[---.netcdf.include]) |
|
13 $ |
|
14 $ on error then goto exit |
|
15 $ on control_y then goto exit |
|
16 $ set ver |
|
17 $ ccc 'objects' |
|
18 $ link/nodebug 'objects', - |
|
19 [-.proglib]mincprog/lib, - |
|
20 [--.src]minc/lib, - |
|
21 [---.netcdf.lib]netcdf/lib, - |
|
22 sys$input/opt |
|
23 sys$library:vaxcrtl.exe/share |
|
24 $exit: |
|
25 $ set nover |