1 #
   2 # Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 include GensrcCommon.gmk
  27 
  28 ################################################################################
  29 #
  30 # Generate files using the charsetmapping tool
  31 #
  32 CHARSET_DATA_DIR := $(JDK_TOPDIR)/make/data/charsetmapping
  33 CHARSET_GENSRC_JAVA_DIR_CS := $(JDK_OUTPUTDIR)/gensrc/jdk.charsets/sun/nio/cs/ext
  34 CHARSET_DONE_CS := $(CHARSET_GENSRC_JAVA_DIR_CS)/_the.charsetmapping
  35 CHARSET_COPYRIGHT_HEADER := $(JDK_TOPDIR)/make/src/classes/build/tools/charsetmapping
  36 CHARSET_TEMPLATES := \
  37     $(CHARSET_DATA_DIR)/SingleByte-X.java.template \
  38     $(CHARSET_DATA_DIR)/DoubleByte-X.java.template
  39 
  40 $(CHARSET_DONE_CS)-extsbcs: $(CHARSET_DATA_DIR)/extsbcs  \
  41     $(CHARSET_TEMPLATES) $(BUILD_TOOLS_JDK)
  42         $(MKDIR) -p $(@D)
  43         $(TOOL_CHARSETMAPPING) $(CHARSET_DATA_DIR) $(CHARSET_GENSRC_JAVA_DIR_CS) extsbcs
  44         $(TOUCH) '$@'
  45 
  46 $(CHARSET_DONE_CS)-dbcs: $(CHARSET_DATA_DIR)/dbcs \
  47     $(CHARSET_TEMPLATES) $(BUILD_TOOLS_JDK)
  48         $(MKDIR) -p $(@D)
  49         $(TOOL_CHARSETMAPPING) $(CHARSET_DATA_DIR) $(CHARSET_GENSRC_JAVA_DIR_CS) dbcs
  50         $(TOUCH) '$@'
  51 
  52 $(CHARSET_DONE_CS)-hkscs: $(CHARSET_COPYRIGHT_HEADER)/HKSCS.java \
  53     $(BUILD_TOOLS_JDK)
  54         $(MKDIR) -p $(@D)
  55         $(TOOL_CHARSETMAPPING) $(CHARSET_DATA_DIR) $(CHARSET_GENSRC_JAVA_DIR_CS) hkscs '$<'
  56         $(TOUCH) '$@'
  57 
  58 $(CHARSET_DONE_CS)-euctw: $(CHARSET_COPYRIGHT_HEADER)/EUC_TW.java \
  59     $(BUILD_TOOLS_JDK)
  60         $(MKDIR) -p $(@D)
  61         $(TOOL_CHARSETMAPPING) $(CHARSET_DATA_DIR) $(CHARSET_GENSRC_JAVA_DIR_CS) euctw '$<'
  62         $(TOUCH) '$@'
  63 
  64 $(CHARSET_GENSRC_JAVA_DIR_CS)/sjis0213.dat: $(CHARSET_DATA_DIR)/sjis0213.map \
  65     $(BUILD_TOOLS_JDK)
  66         $(MKDIR) -p $(@D)
  67         $(TOOL_CHARSETMAPPING) '$<' '$@' sjis0213
  68 
  69 GENSRC_JDK_CHARSETS += \
  70     $(CHARSET_DONE_CS)-extsbcs \
  71     $(CHARSET_DONE_CS)-dbcs \
  72     $(CHARSET_DONE_CS)-hkscs \
  73     $(CHARSET_DONE_CS)-euctw \
  74     $(CHARSET_GENSRC_JAVA_DIR_CS)/sjis0213.dat \
  75     #
  76 
  77 ################################################################################
  78 
  79 jdk.charsets: $(GENSRC_JDK_CHARSETS)
  80 
  81 all: jdk.charsets
  82 
  83 .PHONY: all jdk.charsets
  84