From: Benjamin Peterson Date: Fri, 13 Jan 2012 13:45:55 +0000 (-0500) Subject: make Python-ast.c depend on Python-ast.h X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f918c1480a1566b774391bbc4ddf1d4153965a1;p=python make Python-ast.c depend on Python-ast.h --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 0a3df8d935..07aa5bfeb6 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)