(* Copyright (C) 1990, Digital Equipment Corporation *) (* All rights reserved. *) (* See the file COPYRIGHT for a full description. *) INTERFACE M3DepMFTool; IMPORT M3Args; CONST Name = "m3depmf"; Version = "30-Dec-91"; MakeFile_Arg = "MakeFile"; MakeFileDefault = "Makefile"; DefineMacros_Arg = "DefineMacros"; StdOut_Arg = "stdout"; AR_Arg = "AR"; (* if the MakeFile arg is StdOut_Arg, then the makefile is written to * the stdout. If there is no MakeFile flag, then the makefile is * written to "Makefile". *) (* shared flags *) LocalModulesOnly_Arg = "LocalModulesOnly"; Gdebug_Arg = "Gdebug"; Verbose_Arg = "Verbose"; PROCEDURE Get(): M3Args.T RAISES {}; (* Return the tool for m3depmf *) END M3DepMFTool.