| 1 | #
|
|---|
| 2 | # Copyright (c) 2004, 2006, 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 | JARFILE = $(LIBDIR)/jconsole.jar
|
|---|
| 36 |
|
|---|
| 37 | OTHER_JAVACFLAGS += -encoding iso8859-1
|
|---|
| 38 |
|
|---|
| 39 | #
|
|---|
| 40 | # Files
|
|---|
| 41 | #
|
|---|
| 42 | include FILES.gmk
|
|---|
| 43 |
|
|---|
| 44 | AUTO_FILES_JAVA_DIRS = sun/tools/jconsole \
|
|---|
| 45 | com/sun/tools/jconsole
|
|---|
| 46 |
|
|---|
| 47 | FILES_png = $(PNG_FILES:%.png=$(CLASSBINDIR)/%.png)
|
|---|
| 48 | FILES_gif = $(GIF_FILES:%.gif=$(CLASSBINDIR)/%.gif)
|
|---|
| 49 |
|
|---|
| 50 | build: $(GENSRCDIR)/sun/tools/jconsole/Version.java
|
|---|
| 51 |
|
|---|
| 52 | #
|
|---|
| 53 | # Resources
|
|---|
| 54 | #
|
|---|
| 55 | LOCALE_SET_DEFINITION = jdk
|
|---|
| 56 | RESOURCE_BUNDLES_JAVA = $(PKGDIR)/resources/JConsoleResources.java
|
|---|
| 57 |
|
|---|
| 58 | #
|
|---|
| 59 | # Rules.
|
|---|
| 60 | #
|
|---|
| 61 | include $(BUILDDIR)/common/Classes.gmk
|
|---|
| 62 |
|
|---|
| 63 | build: $(FILES_png) $(FILES_gif) $(TEMPDIR)/manifest $(JARFILE)
|
|---|
| 64 |
|
|---|
| 65 | $(GENSRCDIR)/sun/tools/jconsole/Version.java: \
|
|---|
| 66 | $(SHARE_SRC)/classes/sun/tools/jconsole/Version-template.java
|
|---|
| 67 | $(MKDIR) -p $(@D)
|
|---|
| 68 | $(SED) -e 's/@@jconsole_version@@/$(FULL_VERSION)/g' $< > $@
|
|---|
| 69 |
|
|---|
| 70 | $(CLASSBINDIR)/$(PKGDIR)/resources/%: $(SHARE_SRC)/classes/$(PKGDIR)/resources/%
|
|---|
| 71 | @$(MKDIR) -p $(@D)
|
|---|
| 72 | $(install-file)
|
|---|
| 73 |
|
|---|
| 74 | $(TEMPDIR)/manifest: $(SHARE_SRC)/classes/$(PKGDIR)/manifest
|
|---|
| 75 | $(install-file)
|
|---|
| 76 |
|
|---|
| 77 | #
|
|---|
| 78 | # Extra rule to build jconsole.jar
|
|---|
| 79 | #
|
|---|
| 80 |
|
|---|
| 81 | $(JARFILE): $(LIBDIR) $(FILES_class) $(FILES_png) $(FILES_gif) $(TEMPDIR)/manifest
|
|---|
| 82 | $(BOOT_JAR_CMD) -cfm $(JARFILE) $(TEMPDIR)/manifest \
|
|---|
| 83 | -C $(CLASSBINDIR) sun/tools/jconsole \
|
|---|
| 84 | -C $(CLASSBINDIR) com/sun/tools/jconsole \
|
|---|
| 85 | $(JAR_JFLAGS)
|
|---|
| 86 | @$(java-vm-cleanup)
|
|---|
| 87 |
|
|---|
| 88 | clean clobber::
|
|---|
| 89 | $(RM) $(TEMPDIR)/manifest $(JARFILE)
|
|---|
| 90 |
|
|---|