@@ -490,6 +490,10 @@ DEEPFREEZE_OBJS = \
490490 Python/deepfreeze/os.o \
491491 Python/deepfreeze/site.o \
492492 Python/deepfreeze/stat.o \
493+ Python/deepfreeze/types.o \
494+ Python/deepfreeze/importlib.util.o \
495+ Python/deepfreeze/importlib.machinery.o \
496+ Python/deepfreeze/runpy.o \
493497 Python/deepfreeze/__hello__.o \
494498 Python/deepfreeze/__phello__.o \
495499 Python/deepfreeze/__phello__.ham.o \
@@ -1010,6 +1014,18 @@ Python/deepfreeze/site.c: Python/frozen_modules/site.h $(DEEPFREEZE_DEPS)
10101014Python/deepfreeze/stat.c: Python/frozen_modules/stat.h $(DEEPFREEZE_DEPS)
10111015 $(PYTHON_FOR_FREEZE) $(srcdir)/Tools/scripts/deepfreeze.py Python/frozen_modules/stat.h -m stat -o Python/deepfreeze/stat.c
10121016
1017+ Python/deepfreeze/types.c: Python/frozen_modules/types.h $(DEEPFREEZE_DEPS)
1018+ $(PYTHON_FOR_FREEZE) $(srcdir)/Tools/scripts/deepfreeze.py Python/frozen_modules/types.h -m types -o Python/deepfreeze/types.c
1019+
1020+ Python/deepfreeze/importlib.util.c: Python/frozen_modules/importlib.util.h $(DEEPFREEZE_DEPS)
1021+ $(PYTHON_FOR_FREEZE) $(srcdir)/Tools/scripts/deepfreeze.py Python/frozen_modules/importlib.util.h -m importlib.util -o Python/deepfreeze/importlib.util.c
1022+
1023+ Python/deepfreeze/importlib.machinery.c: Python/frozen_modules/importlib.machinery.h $(DEEPFREEZE_DEPS)
1024+ $(PYTHON_FOR_FREEZE) $(srcdir)/Tools/scripts/deepfreeze.py Python/frozen_modules/importlib.machinery.h -m importlib.machinery -o Python/deepfreeze/importlib.machinery.c
1025+
1026+ Python/deepfreeze/runpy.c: Python/frozen_modules/runpy.h $(DEEPFREEZE_DEPS)
1027+ $(PYTHON_FOR_FREEZE) $(srcdir)/Tools/scripts/deepfreeze.py Python/frozen_modules/runpy.h -m runpy -o Python/deepfreeze/runpy.c
1028+
10131029Python/deepfreeze/__hello__.c: Python/frozen_modules/__hello__.h $(DEEPFREEZE_DEPS)
10141030 $(PYTHON_FOR_FREEZE) $(srcdir)/Tools/scripts/deepfreeze.py Python/frozen_modules/__hello__.h -m __hello__ -o Python/deepfreeze/__hello__.c
10151031
@@ -1049,6 +1065,10 @@ FROZEN_FILES_IN = \
10491065 Lib/os.py \
10501066 Lib/site.py \
10511067 Lib/stat.py \
1068+ Lib/types.py \
1069+ Lib/importlib/util.py \
1070+ Lib/importlib/machinery.py \
1071+ Lib/runpy.py \
10521072 Lib/__hello__.py \
10531073 Lib/__phello__/__init__.py \
10541074 Lib/__phello__/ham/__init__.py \
@@ -1071,6 +1091,10 @@ FROZEN_FILES_OUT = \
10711091 Python/frozen_modules/os.h \
10721092 Python/frozen_modules/site.h \
10731093 Python/frozen_modules/stat.h \
1094+ Python/frozen_modules/types.h \
1095+ Python/frozen_modules/importlib.util.h \
1096+ Python/frozen_modules/importlib.machinery.h \
1097+ Python/frozen_modules/runpy.h \
10741098 Python/frozen_modules/__hello__.h \
10751099 Python/frozen_modules/__phello__.h \
10761100 Python/frozen_modules/__phello__.ham.h \
@@ -1130,6 +1154,18 @@ Python/frozen_modules/site.h: $(FREEZE_MODULE) Lib/site.py
11301154Python/frozen_modules/stat.h: $(FREEZE_MODULE) Lib/stat.py
11311155 $(FREEZE_MODULE) stat $(srcdir)/Lib/stat.py Python/frozen_modules/stat.h
11321156
1157+ Python/frozen_modules/types.h: $(FREEZE_MODULE) Lib/types.py
1158+ $(FREEZE_MODULE) types $(srcdir)/Lib/types.py Python/frozen_modules/types.h
1159+
1160+ Python/frozen_modules/importlib.util.h: $(FREEZE_MODULE) Lib/importlib/util.py
1161+ $(FREEZE_MODULE) importlib.util $(srcdir)/Lib/importlib/util.py Python/frozen_modules/importlib.util.h
1162+
1163+ Python/frozen_modules/importlib.machinery.h: $(FREEZE_MODULE) Lib/importlib/machinery.py
1164+ $(FREEZE_MODULE) importlib.machinery $(srcdir)/Lib/importlib/machinery.py Python/frozen_modules/importlib.machinery.h
1165+
1166+ Python/frozen_modules/runpy.h: $(FREEZE_MODULE) Lib/runpy.py
1167+ $(FREEZE_MODULE) runpy $(srcdir)/Lib/runpy.py Python/frozen_modules/runpy.h
1168+
11331169Python/frozen_modules/__hello__.h: $(FREEZE_MODULE) Lib/__hello__.py
11341170 $(FREEZE_MODULE) __hello__ $(srcdir)/Lib/__hello__.py Python/frozen_modules/__hello__.h
11351171
0 commit comments