1 #
   2 # Copyright (c) 2003, 2011, 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 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 
  49 # We don't need snmp here.
  50 AUTO_JAVA_PRUNE = snmp
  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 
  67 ifeq ($(PLATFORM),solaris)
  68 
  69 FILES_c     += SolarisOperatingSystem.c
  70 OTHER_LDLIBS += -lkstat
  71 
  72 endif # PLATFORM solaris
  73 
  74 ifeq ($(PLATFORM),linux)
  75 
  76 FILES_c     += LinuxOperatingSystem.c
  77 
  78 endif # PLATFORM linux
  79 
  80 ifeq ($(PLATFORM),macosx)
  81 
  82 FILES_c     += MacosxOperatingSystem.c
  83 
  84 endif # PLATFORM macosx
  85 
  86 endif # PLATFORM
  87 
  88 #
  89 # Resources
  90 #
  91 LOCALE_SET_DEFINITION = jre
  92 RESOURCE_BUNDLES_COMPILED_PROPERTIES = sun/management/resources/agent.properties
  93 
  94 #
  95 # Find C source files
  96 #
  97 vpath %.c $(SHARE_SRC)/native/sun/management
  98 vpath %.c $(PLATFORM_SRC)/native/sun/management
  99 vpath %.c $(PLATFORM_SRC)/native/com/sun/management
 100 
 101 #
 102 # Access to management.h 
 103 #
 104 
 105 OTHER_INCLUDES += \
 106   -I$(SHARE_SRC)/native/sun/management 
 107 
 108 ifeq ($(PLATFORM),windows)
 109   # Need process status helper API (psapi) on Windows
 110   OTHER_LDLIBS += $(JVMLIB) psapi.lib
 111 endif
 112 
 113 #
 114 # Library to compile.
 115 #
 116 include $(BUILDDIR)/common/Library.gmk
 117 
 118 $(AGENTJAR): $(LIBDIR) $(TEMPDIR)/manifest
 119         $(BOOT_JAR_CMD) -cfm $(AGENTJAR) $(TEMPDIR)/manifest $(BOOT_JAR_JFLAGS)
 120         @$(java-vm-cleanup)
 121 
 122 $(TEMPDIR)/manifest: $(MANIFEST)
 123         $(install-manifest-file)
 124 
 125 build: $(AGENTJAR)
 126 
 127 clean clobber::
 128         $(RM) -r $(CLASSDESTDIR)/java/management
 129         $(RM) -r $(CLASSDESTDIR)/sun/management
 130         $(RM) $(TEMPDIR)/manifest $(AGENTJAR)
 131