add parsetok.h as a dependency - previously, changing this file doesn't
cause the right files to be rebuilt.
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 4ba5d85..1452398 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -483,6 +483,8 @@
 
 Parser/tokenizer_pgen.o:	$(srcdir)/Parser/tokenizer.c
 
+Parser/pgenmain.o:	$(srcdir)/Include/parsetok.h
+
 $(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
 	$(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
 
@@ -535,6 +537,7 @@
 		Include/moduleobject.h \
 		Include/object.h \
 		Include/objimpl.h \
+		Include/parsetok.h \
 		Include/patchlevel.h \
 		Include/pyarena.h \
 		Include/pydebug.h \