< prev index next >

make/gensrc/Gensrc-jdk.jlink.gmk

Print this page
@  rev 53689 : 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
|  Reviewed-by: alanb, mchung, erikj
~
o  rev 53378 : 8214796: V3: Create a jlink plugin for stripping debug info symbols from native libraries
|  Reviewed-by: alanb, mandy
~
o  rev 53375 : 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
|  Reviewed-by: alanb, mandy
~


   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 GensrcCommonJdk.gmk


  27 
  28 ################################################################################
  29 
  30 include GensrcProperties.gmk

  31 
  32 $(eval $(call SetupCompileProperties, JLINK_PROPERTIES, \
  33     SRC_DIRS := $(TOPDIR)/src/jdk.jlink/share/classes/jdk/tools/jlink/resources, \
  34     CLASS := ListResourceBundle, \
  35 ))
  36 
  37 $(eval $(call SetupCompileProperties, JMOD_PROPERTIES, \
  38     SRC_DIRS := $(TOPDIR)/src/jdk.jlink/share/classes/jdk/tools/jmod/resources, \
  39     CLASS := ListResourceBundle, \
  40 ))
  41 
  42 $(eval $(call SetupCompileProperties, JIMAGE_PROPERTIES, \
  43     SRC_DIRS := $(TOPDIR)/src/jdk.jlink/share/classes/jdk/tools/jimage/resources, \
  44     CLASS := ListResourceBundle, \
  45 ))
  46 
  47 
  48 TARGETS += $(JLINK_PROPERTIES) $(JMOD_PROPERTIES) $(JIMAGE_PROPERTIES)
  49 
  50 ################################################################################
  51 
  52 all: $(TARGETS)
  53 


   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 GensrcCommonJdk.gmk
  27 include GensrcProperties.gmk
  28 include Modules.gmk
  29 
  30 ################################################################################
  31 
  32 JLINK_RESOURCES_DIRS := $(addsuffix /jdk/tools/jlink/resources, \
  33                                    $(call FindModuleSrcDirs, jdk.jlink))
  34 
  35 $(eval $(call SetupCompileProperties, JLINK_PROPERTIES, \
  36     SRC_DIRS := $(JLINK_RESOURCES_DIRS), \
  37     CLASS := ListResourceBundle, \
  38 ))
  39 
  40 $(eval $(call SetupCompileProperties, JMOD_PROPERTIES, \
  41     SRC_DIRS := $(TOPDIR)/src/jdk.jlink/share/classes/jdk/tools/jmod/resources, \
  42     CLASS := ListResourceBundle, \
  43 ))
  44 
  45 $(eval $(call SetupCompileProperties, JIMAGE_PROPERTIES, \
  46     SRC_DIRS := $(TOPDIR)/src/jdk.jlink/share/classes/jdk/tools/jimage/resources, \
  47     CLASS := ListResourceBundle, \
  48 ))
  49 
  50 
  51 TARGETS += $(JLINK_PROPERTIES) $(JMOD_PROPERTIES) $(JIMAGE_PROPERTIES)
  52 
  53 ################################################################################
  54 
  55 all: $(TARGETS)
  56 
< prev index next >