bpo-36143: make regen-all now also runs regen-keyword (GH-24245)

diff --git a/Makefile.pre.in b/Makefile.pre.in
index 7f7f759..5605a88 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -755,7 +755,7 @@
 # Regenerate all generated files
 
 regen-all: regen-opcode regen-opcode-targets regen-typeslots \
-	regen-token regen-ast regen-importlib clinic \
+	regen-token regen-ast regen-keyword regen-importlib clinic \
 	regen-pegen-metaparser regen-pegen
 
 ############################################################################
diff --git a/Misc/NEWS.d/next/Build/2021-01-18-20-52-06.bpo-36143.kgnIYo.rst b/Misc/NEWS.d/next/Build/2021-01-18-20-52-06.bpo-36143.kgnIYo.rst
new file mode 100644
index 0000000..5ac3269
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2021-01-18-20-52-06.bpo-36143.kgnIYo.rst
@@ -0,0 +1 @@
+``make regen-all`` now also runs ``regen-keyword``. Patch by Victor Stinner.