メイクファイル中の注釈

注釈の前には番号記号 (#) を付けます。NMAKE は番号記号から次の改行文字までのテキストを無視します。次に例を示します。

	# 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 # Error: cannot comment this
	  # Error: # must be the first character
	.obj.exe: ; link $< # Error: cannot comment this

番号記号を文字表現として指定するには,次のように,その前にカレット (^) を付けます。

	DEF = ^#define #Macro representing a Fortran compiler directive