updated for version 7.0067
diff --git a/runtime/syntax/make.vim b/runtime/syntax/make.vim
index 85da980..aba073e 100644
--- a/runtime/syntax/make.vim
+++ b/runtime/syntax/make.vim
@@ -2,7 +2,7 @@
 " Language:	Makefile
 " Maintainer:	Claudio Fleiner <claudio@fleiner.com>
 " URL:		http://www.fleiner.com/vim/syntax/make.vim
-" Last Change:	2004 Apr 30
+" Last Change:	2005 Apr 17
 
 " For version 5.x: Clear all syntax items
 " For version 6.x: Quit when a syntax file was already loaded
@@ -67,9 +67,9 @@
 
 " Comment
 if exists("make_microsoft")
-   syn match  makeComment "#.*" contains=makeTodo
+   syn match  makeComment "#.*" contains=makeTodo,@Spell
 else
-   syn region  makeComment	start="#" end="^$" end="[^\\]$" keepend contains=makeTodo
+   syn region  makeComment	start="#" end="^$" end="[^\\]$" keepend contains=makeTodo,@Spell
    syn match   makeComment	"#$"
 endif
 syn keyword makeTodo TODO FIXME XXX contained