blob: 852aa8afff3ab70418a866ff083d594a9a76fdbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$! CLIP.COM: Runs the complete CLiP system, i.e. first and seconc !$
$! pass. On problems with the first pass the second one is !$
$! not executed. !$
$! PAR1: Ooptional INI-file. Default is CLIP.INI. !$
$!
$ IF P1 .EQS. ""
$ THEN DEFINE/USER_MODE STRT_INIFILE CLIP.INI
$ ELSE DEFINE/USER_MODE STRT_INIFILE 'P1
$ ENDIF
$!
$ DEFINE/USER_MODE SYS$INPUT SYS$COMMAND
$ ON ERROR GOTO SKIP_PASS2
$ RUN CLIP_DIR:CLiP_1.EXE
$ CL
$SKIP_PASS2:
$ EXIT
|