[Python-checkins] r53397 - python/trunk/Makefile.pre.in

anthony.baxter python-checkins at python.org
Fri Jan 12 10:35:56 CET 2007


Author: anthony.baxter
Date: Fri Jan 12 10:35:56 2007
New Revision: 53397

Modified:
   python/trunk/Makefile.pre.in
Log:
add parsetok.h as a dependency - previously, changing this file doesn't
cause the right files to be rebuilt.


Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Fri Jan 12 10:35:56 2007
@@ -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 \


More information about the Python-checkins mailing list