summaryrefslogtreecommitdiff
path: root/PC/os2emx/Makefile
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2008-09-22 14:23:45 +0000
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2008-09-22 14:23:45 +0000
commit2b806b66a7c5195118412d9bfe7a113f8a44ef7e (patch)
tree081e923fa99e9215a67c4d64c207887b7ba682bf /PC/os2emx/Makefile
parent05ab125525eda48a6c256f268328a5830002ce0b (diff)
downloadcpython-2b806b66a7c5195118412d9bfe7a113f8a44ef7e.tar.gz
build_os2emx.patch in issue 3868 - update OS/2 EMX makefile and config files
Part of source_os2emx.patch in issue 3868: Include/pystrcmp.h: OS/2 has same C APIs as Windows Lib/test/test_io.py: OS/2 has same behaviour as Windows for this test Reviewed by Amaury Forgeot d'Arc
Diffstat (limited to 'PC/os2emx/Makefile')
-rw-r--r--PC/os2emx/Makefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/PC/os2emx/Makefile b/PC/os2emx/Makefile
index 2e9e50ee92..ff04f72cac 100644
--- a/PC/os2emx/Makefile
+++ b/PC/os2emx/Makefile
@@ -287,7 +287,7 @@ SRC.MODULES= $(addprefix $(TOP), \
Modules/binascii.c \
Modules/cmathmodule.c \
Modules/_codecsmodule.c \
- Modules/collectionsmodule.c \
+ Modules/_collectionsmodule.c \
Modules/cPickle.c \
Modules/cStringIO.c \
Modules/_csv.c \
@@ -295,6 +295,7 @@ SRC.MODULES= $(addprefix $(TOP), \
Modules/dlmodule.c \
Modules/errnomodule.c \
Modules/fcntlmodule.c \
+ Modules/_fileio.c \
Modules/_functoolsmodule.c \
Modules/_heapqmodule.c \
Modules/imageop.c \
@@ -305,7 +306,6 @@ SRC.MODULES= $(addprefix $(TOP), \
Modules/md5module.c \
Modules/operator.c \
Modules/_randommodule.c \
- Modules/rgbimgmodule.c \
Modules/shamodule.c \
Modules/sha256module.c \
Modules/sha512module.c \
@@ -343,6 +343,8 @@ SRC.PYTHON= $(addprefix $(TOP), \
Python/compile.c \
Python/codecs.c \
Python/errors.c \
+ Python/formatter_string.c \
+ Python/formatter_unicode.c \
Python/frozen.c \
Python/frozenmain.c \
Python/future.c \
@@ -359,8 +361,10 @@ SRC.PYTHON= $(addprefix $(TOP), \
Python/modsupport.c \
Python/mysnprintf.c \
Python/mystrtoul.c \
+ Python/peephole.c \
Python/pyarena.c \
Python/pyfpe.c \
+ Python/pymath.c \
Python/pystate.c \
Python/pystrtod.c \
Python/pythonrun.c \
@@ -370,11 +374,14 @@ SRC.PYTHON= $(addprefix $(TOP), \
Python/traceback.c \
Python/getopt.c \
Python/dynload_shlib.c \
- Python/thread.c)
+ Python/thread.c \
+ Python/_warnings.c)
SRC.OBJECT= $(addprefix $(TOP), \
Objects/abstract.c \
Objects/boolobject.c \
Objects/bufferobject.c \
+ Objects/bytearrayobject.c \
+ Objects/bytes_methods.c \
Objects/cellobject.c \
Objects/classobject.c \
Objects/cobject.c \