summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-01-13 13:45:55 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-01-13 13:45:55 (GMT)
commit1f918c1480a1566b774391bbc4ddf1d4153965a1 (patch)
tree14711b7c99a52b5a3631fb20129de2f0c6613fea /Makefile.pre.in
parent1f7ce62bd61488d5d721896a36a1b43befab88b5 (diff)
downloadcpython-1f918c1480a1566b774391bbc4ddf1d4153965a1.zip
cpython-1f918c1480a1566b774391bbc4ddf1d4153965a1.tar.gz
cpython-1f918c1480a1566b774391bbc4ddf1d4153965a1.tar.bz2
make Python-ast.c depend on Python-ast.h
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 0a3df8d..07aa5bf 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -614,7 +614,7 @@ Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
$(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
$(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
-$(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
+$(AST_C): $(AST_H) $(AST_ASDL) $(ASDLGEN_FILES)
$(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
Python/compile.o Python/symtable.o Python/ast.o: $(GRAMMAR_H) $(AST_H)