Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 1.36 KB

description-blocks.md

File metadata and controls

34 lines (29 loc) · 1.36 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic dev_langs helpviewer_keywords ms.assetid caps.latest.revision author ms.author manager
Description Blocks | Microsoft Docs
11/04/2016
cpp-tools
article
C++
description blocks
NMAKE program, description blocks
blocks, description
1321f228-d389-40ac-b0cd-4f6e9293602b
7
corob-msft
corob
ghogen

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