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