diff options
author | Guido van Rossum <guido@python.org> | 2023-01-18 18:41:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-18 18:41:07 (GMT) |
commit | 1f0d0a432cf431882b432eeba8315f84f818da6b (patch) | |
tree | c4ea6660f3c06b814479de050f0c08aec7a159c2 /Makefile.pre.in | |
parent | d65f48507045c87000c65dc2c4fa727f483caad6 (diff) | |
download | cpython-1f0d0a432cf431882b432eeba8315f84f818da6b.zip cpython-1f0d0a432cf431882b432eeba8315f84f818da6b.tar.gz cpython-1f0d0a432cf431882b432eeba8315f84f818da6b.tar.bz2 |
GH-98831: Move assorted macros from ceval.h to a new header (#101116)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 8c7a17b..d98f986 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1466,8 +1466,12 @@ regen-cases: -o $(srcdir)/Python/opcode_metadata.h.new $(UPDATE_FILE) $(srcdir)/Python/opcode_metadata.h $(srcdir)/Python/opcode_metadata.h.new -Python/ceval.o: $(srcdir)/Python/opcode_targets.h $(srcdir)/Python/condvar.h $(srcdir)/Python/generated_cases.c.h - +Python/ceval.o: \ + $(srcdir)/Python/ceval_macros.h \ + $(srcdir)/Python/condvar.h \ + $(srcdir)/Python/generated_cases.c.h \ + $(srcdir)/Python/opcode_metadata.h \ + $(srcdir)/Python/opcode_targets.h Python/frozen.o: $(FROZEN_FILES_OUT) |