NetBatch Manual
National Language Support
NetBatch Manual—522460-004
C-6
Step 5: Convert EDIT Source File to TAL Source File
Step 5: Convert EDIT Source File to TAL Source File
Run BATCHUTL with the COMPILE-SYMBOLS parameter to convert the EDIT file to a
TAL source file:
> BATCHUTL /IN EDITSRC, OUT TALSRC/ COMPILE-SYMBOLS 1
Considerations
Run the BATCHUTL program to convert the modified EDIT file to a TAL source file:
EDIT-file
specifies the name of the EDIT file created at Step 3 and modified at Step 4.
TAL-source-file
specifies the name of the TAL source file. You compile this file into a TAL object at
Step 6.
n
is the number specified for n at Step 3. The default is 0.
Step 6: Compile TAL Source File
Use the TAL compiler to compile the TAL source file created by BATCHUTL at Step 5
into a TAL object. You bind this object into BATCHLIB at Step 7.
> TAL /IN TALSRC/ TALOBJ; SUPPRESS
BINDER - OBJECT FILE BINDER …
Object file \MELBDEV.$DATA7.TRASH.TALOBJ .
.
Step 7: Bind Compiled Object Into BATCHLIB
Use the Binder program to bind the TAL object created at Step 6 into BATCHLIB:
> BIND
BINDER - OBJECT FILE BINDER …
@ADD * FROM $DATA7.TEST.BATCHLIB
@REPLACE * FROM $DATA7.TRASH.TALOBJ
@BUILD $DATA7.TEST.BATCHLIB !
.
.
@EXIT
[ RUN ] BATCHUTL / IN EDIT-file , OUT TAL-source-file /
C[OMPILE-SYMBOLS] [ n ]