mirror of
https://github.com/python/cpython.git
synced 2024-12-14 20:34:12 +08:00
49fd7fa443
number of tests, all because of the codecs/_multibytecodecs issue described here (it's not a Py3K issue, just something Py3K discovers): http://mail.python.org/pipermail/python-dev/2006-April/064051.html Hye-Shik Chang promised to look for a fix, so no need to fix it here. The tests that are expected to break are: test_codecencodings_cn test_codecencodings_hk test_codecencodings_jp test_codecencodings_kr test_codecencodings_tw test_codecs test_multibytecodec This merge fixes an actual test failure (test_weakref) in this branch, though, so I believe merging is the right thing to do anyway.
85 lines
1.7 KiB
Makefile
85 lines
1.7 KiB
Makefile
#
|
|
# Recreate the Python charmap codecs from the Unicode mapping
|
|
# files available at ftp://ftp.unicode.org/
|
|
#
|
|
#(c) Copyright Marc-Andre Lemburg, 2005.
|
|
# Licensed to PSF under a Contributor Agreement.
|
|
|
|
# Python binary to use
|
|
PYTHON = python
|
|
|
|
# Remove tool to use
|
|
RM = /bin/rm
|
|
|
|
### Generic targets
|
|
|
|
all: distclean mappings codecs
|
|
|
|
codecs: misc windows iso apple ebcdic custom-mappings cjk
|
|
|
|
### Mappings
|
|
|
|
mappings:
|
|
ncftpget -R ftp.unicode.org . Public/MAPPINGS
|
|
|
|
### Codecs
|
|
|
|
build/:
|
|
mkdir build
|
|
|
|
misc: build/
|
|
$(PYTHON) gencodec.py MAPPINGS/VENDORS/MISC/ build/
|
|
$(RM) build/atarist.*
|
|
$(RM) build/us_ascii_quotes.*
|
|
$(RM) build/ibmgraph.*
|
|
$(RM) build/sgml.*
|
|
$(RM) -f build/readme.*
|
|
|
|
custom-mappings: build/
|
|
$(PYTHON) gencodec.py python-mappings/ build/
|
|
|
|
windows: build/
|
|
$(PYTHON) gencodec.py MAPPINGS/VENDORS/MICSFT/WINDOWS/ build/
|
|
$(RM) build/cp9*
|
|
$(RM) -f build/readme.*
|
|
|
|
iso: build/
|
|
$(PYTHON) gencodec.py MAPPINGS/ISO8859/ build/ iso
|
|
$(RM) -f build/isoreadme.*
|
|
|
|
apple: build/
|
|
$(PYTHON) gencodec.py MAPPINGS/VENDORS/APPLE/ build/ mac_
|
|
$(RM) build/mac_dingbats.*
|
|
$(RM) build/mac_japanese.*
|
|
$(RM) build/mac_chin*
|
|
$(RM) build/mac_korean.*
|
|
$(RM) build/mac_symbol.*
|
|
$(RM) build/mac_corpchar.*
|
|
$(RM) build/mac_devanaga.*
|
|
$(RM) build/mac_gaelic.*
|
|
$(RM) build/mac_gurmukhi.*
|
|
$(RM) build/mac_hebrew.*
|
|
$(RM) build/mac_inuit.*
|
|
$(RM) build/mac_thai.*
|
|
$(RM) build/mac_ukraine.*
|
|
$(RM) build/mac_arabic.py
|
|
$(RM) build/mac_celtic.*
|
|
$(RM) build/mac_gujarati.*
|
|
$(RM) build/mac_keyboard.*
|
|
$(RM) -f build/mac_readme.*
|
|
|
|
ebcdic: build/
|
|
$(PYTHON) gencodec.py MAPPINGS/VENDORS/MICSFT/EBCDIC/ build/
|
|
$(RM) -f build/readme.*
|
|
|
|
cjk: build/
|
|
$(PYTHON) gencjkcodecs.py build/
|
|
|
|
### Cleanup
|
|
|
|
clean:
|
|
$(RM) build/*
|
|
|
|
distclean: clean
|
|
$(RM) -rf MAPPINGS/
|