author | herrick |
Mon, 15 Jun 2009 13:07:18 -0400 | |
changeset 3033 | 005c4e992893 |
parent 2285 | 37fdbed8178f |
child 4665 | d14dc3d9e1fa |
permissions | -rw-r--r-- |
2 | 1 |
# |
1247 | 2 |
# Copyright 2003-2008 Sun Microsystems, Inc. All Rights Reserved. |
2 | 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. Sun designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Sun 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
22 |
# CA 95054 USA or visit www.sun.com if you need additional information or |
|
23 |
# have any questions. |
|
24 |
# |
|
25 |
||
26 |
BUILDDIR = ../.. |
|
27 |
PACKAGE = java.lang.management |
|
28 |
LIBRARY = management |
|
29 |
PRODUCT = java |
|
30 |
include $(BUILDDIR)/common/Defs.gmk |
|
31 |
||
32 |
MGMT_SRC = $(SHARE_SRC)/classes/java/lang/management |
|
33 |
SMGMT_SRC = $(SHARE_SRC)/classes/sun/management |
|
34 |
||
35 |
AGENTJAR = $(LIBDIR)/management-agent.jar |
|
36 |
MANIFEST = $(SMGMT_SRC)/manifest |
|
37 |
||
38 |
# |
|
39 |
# Use mapfile |
|
40 |
# |
|
41 |
FILES_m = mapfile-vers |
|
42 |
include $(BUILDDIR)/common/Mapfile-vers.gmk |
|
43 |
||
44 |
# |
|
45 |
# Files to compile |
|
46 |
# |
|
47 |
include FILES_c.gmk |
|
48 |
||
2285
37fdbed8178f
6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents:
1247
diff
changeset
|
49 |
# We don't need snmp here. |
37fdbed8178f
6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents:
1247
diff
changeset
|
50 |
AUTO_JAVA_PRUNE = snmp |
2 | 51 |
AUTO_FILES_JAVA_DIRS = java/lang/management com/sun/management sun/management |
52 |
||
53 |
include Exportedfiles.gmk |
|
54 |
||
55 |
ifeq ($(PLATFORM),windows) |
|
56 |
||
57 |
FILES_c += OperatingSystem_md.c |
|
58 |
||
59 |
FILES_export += com/sun/management/OperatingSystem.java |
|
60 |
||
61 |
else # PLATFORM (i.e. solaris & linux) |
|
62 |
||
63 |
FILES_c += UnixOperatingSystem_md.c |
|
64 |
||
65 |
FILES_export += com/sun/management/UnixOperatingSystem.java |
|
66 |
endif # PLATFORM |
|
67 |
||
68 |
# |
|
69 |
# Resources |
|
70 |
# |
|
71 |
LOCALE_SET_DEFINITION = jre |
|
72 |
RESOURCE_BUNDLES_COMPILED_PROPERTIES = sun/management/resources/agent.properties |
|
73 |
||
74 |
# |
|
75 |
# Find C source files |
|
76 |
# |
|
77 |
vpath %.c $(SHARE_SRC)/native/sun/management |
|
78 |
vpath %.c $(PLATFORM_SRC)/native/sun/management |
|
79 |
vpath %.c $(PLATFORM_SRC)/native/com/sun/management |
|
80 |
||
81 |
# |
|
82 |
# Access to management.h |
|
83 |
# |
|
84 |
||
85 |
OTHER_INCLUDES += \ |
|
86 |
-I$(SHARE_SRC)/native/sun/management |
|
87 |
||
88 |
ifeq ($(PLATFORM),windows) |
|
89 |
OTHER_LDLIBS += $(JVMLIB) |
|
90 |
endif |
|
91 |
||
92 |
# |
|
93 |
# Library to compile. |
|
94 |
# |
|
95 |
include $(BUILDDIR)/common/Library.gmk |
|
96 |
||
97 |
$(AGENTJAR): $(LIBDIR) $(TEMPDIR)/manifest |
|
916
867515b155b5
6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents:
2
diff
changeset
|
98 |
$(BOOT_JAR_CMD) -cfm $(AGENTJAR) $(TEMPDIR)/manifest $(BOOT_JAR_JFLAGS) |
867515b155b5
6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents:
2
diff
changeset
|
99 |
@$(java-vm-cleanup) |
2 | 100 |
|
101 |
$(TEMPDIR)/manifest: $(MANIFEST) |
|
102 |
$(install-file) |
|
103 |
||
104 |
build: $(AGENTJAR) |
|
105 |
||
106 |
clean clobber:: |
|
107 |
$(RM) -r $(CLASSDESTDIR)/java/management |
|
108 |
$(RM) -r $(CLASSDESTDIR)/sun/management |
|
109 |
$(RM) $(TEMPDIR)/manifest $(AGENTJAR) |
|
110 |