Skip to content

Latest commit

 

History

History
59 lines (54 loc) · 1.09 KB

File metadata and controls

59 lines (54 loc) · 1.09 KB
title Multiple Targets | 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
makefiles, targets
multiple targets in NMAKE
targets, multiple in NMAKE
NMAKE program, targets
ms.assetid b609a179-0b9f-4b08-9930-998047588ae0
caps.latest.revision 10
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
ru-ru
zh-cn
zh-tw
translation.priority.mt
cs-cz
pl-pl
pt-br
tr-tr

Multiple Targets

NMAKE evaluates multiple targets in a single dependency as if each were specified in a separate description block.

For example, this...

bounce.exe leap.exe : jump.obj  
   echo Building...  

...is evaluated as this:

bounce.exe : jump.obj  
   echo Building...  
leap.exe : jump.obj  
   echo Building...  

See Also

Targets