!============================================================================= ! Description !- Installs the tool DOCSTY, assuming the standard Toolkit install !- context. !# MMS Macros !! The following MMS macros are assumed to already be defined, in order !- for this to work. ![ !: EXE Toolkit executables directory !: EXECOPY DCL command to install *.EXE files. !: HELP Toolkit help directory. !: HLB For the toolkit help library file. !: HLPCOPY DCL command to install *.HLP files. !: OBJCOPY DCL command to install *.OBJ files. !] !^ MMS Macros>EXE>in DOCSTY_INSTALL.MMS !^ MMS Macros>EXECOPY>in DOCSTY_INSTALL.MMS !^ MMS Macros>HELP>in DOCSTY_INSTALL.MMS !^ MMS Macros>HLB>in DOCSTY_INSTALL.MMS !^ MMS Macros>HLPCOPY>in DOCSTY_INSTALL.MMS !^ MMS Macros>OBJCOPY>in DOCSTY_INSTALL.MMS !============================================================================= !# MMS Targets ![ !: DOCSTY !^ MMS Targets>DOCSTY>in DOCSTY_INSTALL.MMS DOCSTY : - $(HLB)(DOCSTY=DOCSTY.hlp), - $(HELP)DOCSTY.HLP, - $(EXE)DOCSTY.OBJ, - $(EXE)DOCSTY.exe @ write sys$output "%MMS-I-TOOL, $(mms$target) installed" !: $(HELP)DOCSTY.HLP !^ MMS Targets>$(HELP)DOCSTY.HLP>in DOCSTY_INSTALL.MMS $(HELP)DOCSTY.HLP : DOCSTY.HLP $(hlpcopy) $(mms$source) $(mms$target) @ write sys$output "%MMS-I-TARGET, $(mms$target) installed" !: $(EXE)DOCSTY.EXE !^ MMS Targets>$(EXE)DOCSTY.EXE>in DOCSTY_INSTALL.MMS $(EXE)DOCSTY.exe : DOCSTY.exe $(execopy) $(mms$source) $(mms$target) @ write sys$output "%MMS-I-TARGET, $(mms$target) installed" !: $(EXE)DOCSTY.OBJ !^ MMS Targets>$(EXE)DOCSTY.OBJ>in DOCSTY_INSTALL.MMS $(EXE)DOCSTY.OBJ : DOCSTY.OBJ $(objcopy) $(mms$source) $(mms$target) @ write sys$output "%MMS-I-TARGET, $(mms$target) installed" !]