1# -*- makefile -*-
2
3# ---
4# Built-in modules required to get a functioning interpreter;
5# cannot be built as shared!
6*static*
7
8# module C APIs are used in core
9atexit atexitmodule.c
10faulthandler faulthandler.c
11posix posixmodule.c
12_signal signalmodule.c
13_tracemalloc _tracemalloc.c
14
15# modules used by importlib, deepfreeze, freeze, runpy, and sysconfig
16_codecs _codecsmodule.c
17_collections _collectionsmodule.c
18errno errnomodule.c
19_io _io/_iomodule.c _io/iobase.c _io/fileio.c _io/bytesio.c _io/bufferedio.c _io/textio.c _io/stringio.c
20itertools itertoolsmodule.c
21_sre _sre/sre.c
22_thread _threadmodule.c
23time timemodule.c
24_weakref _weakref.c
25
26# commonly used core modules
27_abc _abc.c
28_functools _functoolsmodule.c
29_locale _localemodule.c
30_operator _operator.c
31_stat _stat.c
32_symtable symtablemodule.c
33
34# for systems without $HOME env, used by site._getuserbase()
35@MODULE_PWD_TRUE@pwd pwdmodule.c
36