You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe it is in the documentation, at the moment I don't have access, so ...
CMS support in MMK is not equivalent to that of MMS. Especially the macros
mms$cms_library, $@ and $< are expanded differently:
$ mms/id
%MMS-I-IDENT, MMS V3.3-4 � Digital Equipment Corporation 1989, 1998. All rights
reserved. � Electronic Data Systems Limited 1995, 1998
$ mms/cms/desc=yy
write sys$output "DISK$USER:[USER.HUHU]"
DISK$USER:[USER.HUHU]
write sys$output "DISK$USER:[USER.HUHU]"
DISK$USER:[USER.HUHU]
write sys$output "YY.C"
YY.C
write sys$output "YY.C"
YY.C
write sys$output "1+"
1+
write sys$output "1+"
1+
$
$ mmk/id
%MMK-I-IDENT, this is the MMK Make Utility V5.0
-MMK-I-COPYRIGHT, Copyright (c) 2008, Matthew Madison.
Copyright (c) 2013, Endless Software Solutions.
See LICENSE.TXT in distribution kit for license information.
$ mmk/cms/desc=yy
%MMK-F-NOOPNDSC, could not open description file yy
-RMS-E-FNF, file not found
$ mmk/cms/desc=yy.mms
write sys$output ""
write sys$output "YY.OBJ"
YY.OBJ
write sys$output "YY.C"
YY.C
write sys$output "YY.C~"
YY.C~
write sys$output "1+"
1+
write sys$output "1+"
1+
%MMK-I-ACTNOUPD, action did not update target YY.OBJ
$
The text was updated successfully, but these errors were encountered:
hb--
changed the title
mms/mmk differences - mms support
mms/mmk differences - cms support
Jun 20, 2015
Okay, this is an area where I think support should be equivalent. I'll look into this as a bug that need fixing. I may even consider a flag to indicate which mode of CMS support is expected. I'd prefer not to go this route, but I will have to consider those existing users that might expect certain behaviour.
Maybe it is in the documentation, at the moment I don't have access, so ...$@ and $ < are expanded differently:
CMS support in MMK is not equivalent to that of MMS. Especially the macros
mms$cms_library,
The text was updated successfully, but these errors were encountered: