diff options
author | Hye-Shik Chang <hyeshik@gmail.com> | 2006-03-26 02:34:59 (GMT) |
---|---|---|
committer | Hye-Shik Chang <hyeshik@gmail.com> | 2006-03-26 02:34:59 (GMT) |
commit | e2ac4abd016310b0ce1152ccf65666b98e33a76e (patch) | |
tree | 7e6e8423a0ee27770c0635196a2ccfada73b33f9 /Tools/unicode/Makefile | |
parent | a531e5b84c62e90ff0eaed1a61caf5d952409397 (diff) | |
download | cpython-e2ac4abd016310b0ce1152ccf65666b98e33a76e.zip cpython-e2ac4abd016310b0ce1152ccf65666b98e33a76e.tar.gz cpython-e2ac4abd016310b0ce1152ccf65666b98e33a76e.tar.bz2 |
Patch #1443155: Add the incremental codecs support for CJK codecs.
(reviewed by Walter Dörwald)
Diffstat (limited to 'Tools/unicode/Makefile')
-rw-r--r-- | Tools/unicode/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tools/unicode/Makefile b/Tools/unicode/Makefile index f266d4d..fbd3557 100644 --- a/Tools/unicode/Makefile +++ b/Tools/unicode/Makefile @@ -15,7 +15,7 @@ RM = /bin/rm all: distclean mappings codecs -codecs: misc windows iso apple ebcdic custom-mappings +codecs: misc windows iso apple ebcdic custom-mappings cjk ### Mappings @@ -72,6 +72,9 @@ ebcdic: build/ $(PYTHON) gencodec.py MAPPINGS/VENDORS/MICSFT/EBCDIC/ build/ $(RM) -f build/readme.* +cjk: build/ + $(PYTHON) gencjkcodecs.py build/ + ### Cleanup clean: |