DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T c

⟦09b0ae210⟧ TextFile

    Length: 1364 (0x554)
    Types: TextFile
    Names: »ckdlnk.cli«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦3da672b63⟧ »EurOpenD3/misc/kermit.tar.Z« 
        └─⟦126dd3ca0⟧ 
            └─⟦this⟧ »ckdlnk.cli« 

TextFile

comment This file links together the Kermit modules into an excuteable program.
comment File extensions have the usual meaning for the Data General, except
comment that all files have been renamed to kermit.something.
comment If you want to use the SWAT debugger, enter:
comment   ckdlnk/debug
comment
comment Files output from this CLI macro are:
comment   kermit.pr      Kermit program
comment   kermit.er      Link error message file
comment   kermit.st      Symbol table
comment   kermit.dl      Debugger file if /debug is requested
comment   kermit.ds      Debugger file if /debug is requested
comment   kermit.lm      Map file if /map is requested
comment
comment The list of object modules to compile is in ckdsrc.lis .


comment
comment Delete previous error file, and link a new program image
comment

delete/1=ig/2=ig ckdlnk.er

wr; wr Now linking Kermit with options: {%/%}
wr and 3 multitasking processes; wr
ccl%/%/tasks=3/e==ckdlnk.er <[ckdsrc.lis]>


comment
comment Delete the old program image and associated files, and 
comment rename the new program files for Kermit.
comment

DELETE/1=WARN/2=WARN kermit.<pr st>
DELETE/1=IGNORE/2=IGNORE kermit.<dl ds er>
[!neq [!path ckcmai.lm]x,x]
   DELETE/1=IGNORE/2=IGNORE kermit.lm
[!end]
rename/1=IGNORE/2=IGNORE <ckcmai kermit>.(pr st dl ds lm)
rename/1=IGNORE/2=IGNORE <ckdlnk kermit>.er

wr All Done!