make/solaris/makefiles/saproc.make

Wed, 15 Dec 2010 05:43:54 -0800

author
stefank
date
Wed, 15 Dec 2010 05:43:54 -0800
changeset 2368
e7ad5f6f4d29
parent 2314
f95d63e2154a
child 2384
0a8e0d4345b3
permissions
-rw-r--r--

7006659: temporary adlc files are added to the build variables
Summary: Don't recurse into sub-directories when looking for source files.
Reviewed-by: never, brutisso

     1 #
     2 # Copyright (c) 2005, 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.
     8 #
     9 # This code is distributed in the hope that it will be useful, but WITHOUT
    10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12 # version 2 for more details (a copy is included in the LICENSE file that
    13 # accompanied this code).
    14 #
    15 # You should have received a copy of the GNU General Public License version
    16 # 2 along with this work; if not, write to the Free Software Foundation,
    17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18 #
    19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20 # or visit www.oracle.com if you need additional information or have any
    21 # questions.
    22 #  
    23 #
    25 # Rules to build serviceability agent library, used by vm.make
    27 # libsaproc[_g].so: serviceability agent
    29 SAPROC = saproc
    30 LIBSAPROC = lib$(SAPROC).so
    32 SAPROC_G = $(SAPROC)$(G_SUFFIX)
    33 LIBSAPROC_G = lib$(SAPROC_G).so
    35 AGENT_DIR = $(GAMMADIR)/agent
    37 SASRCDIR = $(AGENT_DIR)/src/os/$(Platform_os_family)/proc
    39 SASRCFILES = $(SASRCDIR)/saproc.cpp
    41 SAMAPFILE = $(SASRCDIR)/mapfile
    43 DEST_SAPROC = $(JDK_LIBDIR)/$(LIBSAPROC)
    45 # if $(AGENT_DIR) does not exist, we don't build SA
    47 ifneq ($(wildcard $(AGENT_DIR)),)
    48   BUILDLIBSAPROC = $(LIBSAPROC)
    49 endif
    51 SA_LFLAGS = $(MAPFLAG:FILENAME=$(SAMAPFILE))
    53 ifdef USE_GCC
    54 SA_LFLAGS += -D_REENTRANT
    55 else
    56 SA_LFLAGS += -mt -xnolib -norunpath
    57 endif
    59 $(LIBSAPROC): $(SASRCFILES) $(SAMAPFILE)
    60 	$(QUIETLY) if [ "$(BOOT_JAVA_HOME)" = "" ]; then \
    61 	  echo "ALT_BOOTDIR, BOOTDIR or JAVA_HOME needs to be defined to build SA"; \
    62 	  exit 1; \
    63 	fi
    64 	@echo Making SA debugger back-end...
    65 	$(QUIETLY) $(CPP)                                               \
    66                    $(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG)     \
    67 	           -I$(SASRCDIR)                                        \
    68 	           -I$(GENERATED)                                       \
    69 	           -I$(BOOT_JAVA_HOME)/include                          \
    70 	           -I$(BOOT_JAVA_HOME)/include/$(Platform_os_family)    \
    71 	           $(SASRCFILES)                                        \
    72 	           $(SA_LFLAGS)                                         \
    73 	           -o $@                                                \
    74 	           -ldl -ldemangle -lthread -lc
    75 	[ -f $(LIBSAPROC_G) ] || { ln -s $@ $(LIBSAPROC_G); }
    77 install_saproc: $(BULDLIBSAPROC)
    78 	$(QUIETLY) if [ -f $(LIBSAPROC) ] ; then             \
    79 	  echo "Copying $(LIBSAPROC) to $(DEST_SAPROC)";     \
    80 	  cp -f $(LIBSAPROC) $(DEST_SAPROC) && echo "Done";  \
    81 	fi
    83 .PHONY: install_saproc

mercurial