(* Copyright (C) 1990, Digital Equipment Corporation *) (* All rights reserved. *) (* See the file COPYRIGHT for a full description. *) INTERFACE M3DepM3MFTool; IMPORT M3Args; CONST Name = "m3makefile"; Version = "29-Feb-92"; MakeFile_Arg = "M3MakeFile"; MakeFileDefault = "m3makefile"; DefineMacros_Arg = "DefineMacros"; AR_Arg = "AR"; StdOut_Arg = "stdout"; (* 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 "m3makefile". *) (* shared flags *) PROCEDURE Get(): M3Args.T RAISES {}; (* Return the tool for m3depmf *) END M3DepM3MFTool.