Skip to content

Latest commit

 

History

History
53 lines (48 loc) · 1.55 KB

File metadata and controls

53 lines (48 loc) · 1.55 KB
title Description Blocks | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-tools
ms.tgt_pltfrm
ms.topic article
dev_langs
C++
helpviewer_keywords
description blocks
NMAKE program, description blocks
blocks, description
ms.assetid 1321f228-d389-40ac-b0cd-4f6e9293602b
caps.latest.revision 7
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

Description Blocks

A description block is a dependency line optionally followed by a commands block:

targets... : dependents...  
    commands...  

A dependency line specifies one or more targets and zero or more dependents. A target must be at the start of the line. Separate targets from dependents by a colon (:); spaces or tabs are allowed. To split the line, use a backslash (\ ) after a target or dependent. If a target does not exist, has an earlier timestamp than a dependent, or is a pseudotarget, NMAKE executes the commands. If a dependent is a target elsewhere and does not exist or is out-of-date with respect to its own dependents, NMAKE updates the dependent before updating the current dependency.

What do you want to know more about?

Targets

Dependents

See Also

NMAKE Reference