Trailing-Edge
-
PDP-10 Archives
-
BB-J724A-SM_1980
-
sources/dnload.ctl
There are 6 other files named dnload.ctl in the archive. Click here to see a list.
!
! Name: DNLOAD.CTL
! Date: 11-July-79
!
! This control file is provided for information purposes only. The
! purpose of the file is to document the procedures used to build the
! distributed software. It is unlikely that this control file will be
! able to be submitted without modification on consumer systems.
! Particular attention should be given to ersatz (logical) devices,
! structure names, directories and other such parameters. Submit times
! may vary depending on system configuration and load. The
! availablility of sufficient disk spave and core is mandatory.
!
! Function: This control file builds D60SPD from its basic
! sources. The files created by this job are:
!
! DNLOAD.EXE
!
! The source files needed are:
!
! DNLOAD.MAC
!
! Other files needed on system area:
!
! MONSYM.UNV JSYS argument definitions (TOPS20 only)
! MACSYM.UNV Interesting and useful macros
! MACREL.REL Support code for MACSYM macros
!
! Submit with the switch "/TAG:CREF" to obtain a cref'd listing of the
! assembled source files.
!
@CHKPNT START
START::
@DEFINE FOO: NUL:
@GOTO NOCREF
!
CREF:: @DEFINE FOO: DSK:
!
NOCREF::
@CHKPNT LOGCLS
LOGCLS::
@DEFINE DSK: DSK:,SYS:
@DEFINE REL: DSK:
@INFORMATION LOGICAL-NAMES ALL
!
! Take a checksummed directory of all the input files.
!
@CHKPNT IDIRCT
IDIRCT::
@VDIRECT SYS:MACRO.EXE,SYS:LINK.EXE,SYS:CREF.EXE,
@CHECKSUM SEQ
@
@VDIRECT DNLOAD.MAC,
@CHECKSUM SEQ
@
!
! Get version numbers of assembler, linker and cross reference program
!
@CHKPNT VERSON
VERSON::
@GET SYS:MACRO
@INFORMATION VERSION
@GET SYS:LINK
@INFORMATION VERSION
@GET SYS:CREF
@INFORMATION VERSION
!
! Compile all modules of the DNLOAD program
!
@CHKPNT COMPIL
COMPIL::
@COMPILE /COMPILE /CREF DNLOAD.MAC
!
! Generate cross reference listings of all modules
!
@CHKPNT CRFGEN
CRFGEN::
@R CREF
*FOO:DNLOAD.LST=DNLOAD.CRF
!
! Load and save the DNLOAD program
!
@CHKPNT LOAD
LOAD::
@LOAD DNLOAD
@SAVE DNLOAD
@INFORMATION VERSION
!
! Get a checksummed directory of the output files
!
@CHKPNT ODIRCT
ODIRCT::
@VDIRECT DNLOAD.EXE,
@CHECKSUM SEQ
@
!
!
@CHKPNT END
END::
!
! End of DNLOAD.CTL