make Python-ast.c depend on Python-ast.h

This commit is contained in:
Benjamin Peterson 2012-01-13 08:45:55 -05:00
parent 1f7ce62bd6
commit 1f918c1480
1 changed files with 1 additions and 1 deletions

View File

@ -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)