The information in this article applies to:
SUMMARYIn NMAKE, the backslash "\" character has two different meanings depending on the context in which it is used. It can be used as a line- continuation character or as a path specifier. MORE INFORMATION
The backslash is used primarily as a line-continuation character. For
example, if a dependency line in your makefile extends to more than
one line, use the backslash to continue it to the next line. You can
place a space prior to the backslash or append it directly to the last
dependent file, as the following examples demonstrate:
In the following case, NMAKE interprets the trailing backslash as a
line-continuation character which is contrary to the meaning the
context requires:
In a macro, specifying two backslashes in succession ("\\") nullifies
its use as a line-continuation character. However, when NMAKE expands
the macro, both backslash characters appear and an incorrect path
results.
Additional query words: kbinf 1.20 1.30 1.40 1.50
Keywords : |
Last Reviewed: October 28, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |