Partager via


Commentaires dans un makefile

Faites précéder un commentaire du signe dièse (#).NMAKE ignore le texte compris entre le dièse et le caractère de saut de ligne suivant.Exemples :

# Comment on line by itself
OPTIONS = /MAP  # Comment on macro definition line

all.exe : one.obj two.obj  # Comment on dependency line
    link one.obj two.obj
# Comment in commands block
#   copy *.obj \objects  # Command turned into comment
    copy one.exe \release

.obj.exe:  # Comment on inference rule line
    link $<

my.exe : my.obj ; link my.obj  # Err: cannot comment this
 # Error: # must be the first character
.obj.exe: ; link $<  # Error: cannot comment this

Pour spécifier un dièse littéral, faites-le précéder du signe insertion (^), comme suit :

DEF = ^#define  #Macro for a C preprocessing directive

Voir aussi

Concepts

Contenu d'un makefile