ID: Q62332
1.10 MS-DOS kbtool kbbuglist kbfixlist
The information in this article applies to:
Page 639 of "Microsoft BASIC 7.0: Programmer's Guide" explains how you can use NMAKE to specify more than one description block for the same target.
The example given on this page is the proper way to specify more than one description block; however, this feature does not function correctly in NMAKE version 1.1. It does function correctly in NMAKE version 1.11.
NMAKE version 1.1 shipped with the Professional Development System (PDS) Basic version 7.0. NMAKE version 1.11 shipped with Microsoft C Professional Development System (PDS) version 6.0.
Microsoft has confirmed this to be a problem in NMAKE version 1.1. This problem was corrected in version 1.11.
The following example specifies more than one description block for the same target by using two colons (::) as the separator instead of one. The following example is taken from Page 639 of "Microsoft BASIC 7.0: Programmer's Guide":
TARGET.LIB :: A.ASM B.ASM C.ASM
MASM A.ASM B.ASM C.ASM;
LIB TARGET -+A.OBJ -+B.OBJ -+C.OBJ;
TARGET.LIB :: D.BAS E.BAS
BC D.BAS;
BC E.BAS;
LINK D.OBJ E.OBJ;
LIB TARGET -+D.OBJ -+E.OBJ;
Given the two description blocks above, NMAKE should update the
library named TARGET.LIB. In the first description block, if any of
the assembly language files have changed more recently than the
library, the assembly files will be assembled and the library will be
updated with the new .OBJs. In the second description block, the BASIC
files that have changed should be compiled and the library should also
be updated with the new OBJs.
When using NMAKE version 1.1, the commands in the first description block are executed correctly; however, the commands in the second description block are never executed.
Additional reference words: 1.10 buglist1.10 fixlist1.11 KBCategory: kbtool kbbuglist kbfixlist KBSubcategory: NmakeIss
Keywords : kb16bitonly
Solution Type : kbfix
Last Reviewed: September 12, 1997