jdk/test/sun/management/jmxremote/bootstrap/Makefile
author igerasim
Mon, 20 Jan 2014 19:23:22 +0400
changeset 22355 006659506061
parent 5506 202f599c92aa
permissions -rw-r--r--
8025886: replace [[ and == bash extensions in regtest Reviewed-by: dsamersoff, sla
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     1
# Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    18
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
# This Makefile is used to generate versions of the launcher program for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
# use by the CustomLauncherTest.  The binaries are checked into SCCS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
# so this Makefile is not used as part of test run.  It is provided to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
# make rebuilding the launcher binaries a relatively painless activity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
# Edit the following to reflect the current build environment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
# Architecture being built (initially one of: solaris-sparc, solaris-i586,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
# linux-i586.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
PLATFORM=solaris
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
ARCH=sparc
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
OUTPUT_DIR =$(PLATFORM)-$(ARCH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
# Path to C compiler
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
# As of 6/1/06:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
#	Solaris	CC=/java/devtools/$(ARCH)/SUNWspro/SS11/bin/cc
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
#	Linux	CC=/usr/bin/gcc
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
CC=/java/devtools/$(ARCH)/SUNWspro/SS11/bin/cc
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
# Include directory in JRE or JDK install
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
JINCLUDE=/java/re/jdk/1.6.0/latest/binaries/$(OUTPUT_DIR)/include
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
# PLATFORM dependent flags
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
# On pre-Solaris 10, -lthread is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
ifeq ($(PLATFORM), solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
	PLATFORM_LIBS= -lthread
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
	PLATFORM_LIBS=
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
# Targets
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
all: install
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
$(PLATFORM):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
	mkdir $(OUTPUT_DIR) $(OUTPUT_DIR)/SCCS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
install: $(PLATFORM)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
	$(CC) -I$(JINCLUDE) -I$(JINCLUDE)/$(PLATFORM) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
		-o $(OUTPUT_DIR)/launcher launcher.c $(PLATFORM_LIBS) -ldl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
clean:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
clobber: clean
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
	rm $(OUTPUT_DIR)/launcher