1 #
   2 # Copyright (c) 2004, 2010, 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 #
  27 # Makefile for building jconsole
  28 #
  29 
  30 BUILDDIR = ../..
  31 PACKAGE = sun.tools.jconsole
  32 PRODUCT = sun
  33 include $(BUILDDIR)/common/Defs.gmk
  34 
  35 # This program must contain a manifest that defines the execution level
  36 # needed to follow standard Vista User Access Control Guidelines
  37 # This must be set before Program.gmk is included
  38 #
  39 BUILD_MANIFEST=true
  40 
  41 
  42 JARFILE = $(LIBDIR)/jconsole.jar
  43 
  44 OTHER_JAVACFLAGS += -encoding iso8859-1
  45 
  46 #
  47 # Files
  48 #
  49 include FILES.gmk
  50 
  51 AUTO_FILES_JAVA_DIRS =  sun/tools/jconsole \
  52                         com/sun/tools/jconsole
  53 
  54 FILES_png = $(PNG_FILES:%.png=$(CLASSBINDIR)/%.png)
  55 FILES_gif = $(GIF_FILES:%.gif=$(CLASSBINDIR)/%.gif)
  56 
  57 build: $(GENSRCDIR)/sun/tools/jconsole/Version.java
  58 
  59 #
  60 # Resources
  61 #
  62 LOCALE_SET_DEFINITION = jdk
  63 RESOURCE_BUNDLES_JAVA = $(PKGDIR)/resources/JConsoleResources.java
  64 
  65 #
  66 # Rules.
  67 #
  68 include $(BUILDDIR)/common/Classes.gmk
  69 
  70 build: $(FILES_png) $(FILES_gif) $(TEMPDIR)/manifest $(JARFILE)
  71 
  72 $(GENSRCDIR)/sun/tools/jconsole/Version.java: \
  73                 $(SHARE_SRC)/classes/sun/tools/jconsole/Version.java.template
  74         $(MKDIR) -p $(@D)
  75         $(SED) -e 's/@@jconsole_version@@/$(FULL_VERSION)/g' $< > $@
  76 
  77 $(CLASSBINDIR)/$(PKGDIR)/resources/%: $(SHARE_SRC)/classes/$(PKGDIR)/resources/%
  78         @$(MKDIR) -p $(@D)
  79         $(install-file)
  80 
  81 $(TEMPDIR)/manifest: $(SHARE_SRC)/classes/$(PKGDIR)/manifest
  82         $(install-manifest-file)
  83 
  84 #
  85 # Extra rule to build jconsole.jar
  86 #
  87 
  88 $(JARFILE): $(LIBDIR) $(FILES_class) $(FILES_png) $(FILES_gif) $(TEMPDIR)/manifest
  89         $(BOOT_JAR_CMD) -cfm $(JARFILE) $(TEMPDIR)/manifest \
  90                -C $(CLASSBINDIR) sun/tools/jconsole \
  91                -C $(CLASSBINDIR) com/sun/tools/jconsole \
  92                     $(BOOT_JAR_JFLAGS)
  93         @$(java-vm-cleanup)
  94 
  95 clean clobber::
  96         $(RM) $(TEMPDIR)/manifest $(JARFILE)
  97