diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2007-01-12 09:35:56 +0000 |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2007-01-12 09:35:56 +0000 |
commit | 2464087bda04dc5f49667096a3d7998907a1108b (patch) | |
tree | 43b9f12a0ddc5b87da2af5ba3a00ba7da03fbcf2 | |
parent | 78a132b814dc821a324f17184845c650b66933dd (diff) | |
download | cpython-git-2464087bda04dc5f49667096a3d7998907a1108b.tar.gz |
add parsetok.h as a dependency - previously, changing this file doesn't
cause the right files to be rebuilt.
-rw-r--r-- | Makefile.pre.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 4ba5d85724..1452398849 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -483,6 +483,8 @@ Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c 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 @@ PYTHON_HEADERS= \ Include/moduleobject.h \ Include/object.h \ Include/objimpl.h \ + Include/parsetok.h \ Include/patchlevel.h \ Include/pyarena.h \ Include/pydebug.h \ |