jdk/make/common/shared/PrivateDefs.gmk-example
author |
michaelm |
|
Tue, 06 Mar 2012 20:34:38 +0000 |
changeset 12047 |
320a714614e9 |
parent 2 |
90ce3da70b43
|
permissions |
-rw-r--r-- |
7113349: Initial changeset for Macosx port to jdk
Reviewed-by: jjh, alanb, dholmes, anthony, ohrstrom, ksrini, jrose, weijun, smarks
Contributed-by: Alan Bateman <alan.bateman@oracle.com>, Alexander Potochkin <alexander.potochkin@oracle.com>, Alexander Zuev <alexander.zuev@oracle.com>, Andrew Brygin <andrew.brygin@oracle.com>, Artem Ananiev <artem.ananiev@oracle.com>, Alex Strange <astrange@apple.com>, Bino George <bino@apple.com>, Christine Lu <christine.lu@oracle.com>, David Katleman <david.katleman@oracle.com>, David Durrence <david_durrence@apple.com>, Dmitry Cherepanov <dmitry.cherepanov@oracle.com>, Greg Lewis <glewis@eyesbeyond.com>, Kevin Miller <kevin_m_miller@apple.com>, Kurt Miller <kurt@intricatesoftware.com>, Landon Fuller <landonf@plausiblelabs.com>, Leonid Romanov <leonid.romanov@oracle.com>, Loefty Walkowiak <loefty@apple.com>, Mark Reinhold <mark.reinhold@oracle.com>, Naoto Sato <naoto.sato@oracle.com>, Philip Race <philip.race@oracle.com>, Roger Hoover <rhoover@apple.com>, Scott Kovatch <scott.kovatch@oracle.com>, Sergey ByloKhov <sergey.bylokhov@oracle.com>, Mike Swingler <swingler@apple.com>, Tomas Hurka <tomas.hurka@oracle.com>
2
|
1 |
|
|
2 |
# This file, when re-named to PrivateDefs.gmk will get included in the
|
|
3 |
# makefile definitions (before the ALT_ variables are read) so that you can
|
|
4 |
# override makefile settings permanently for a workspace.
|
|
5 |
# Use of this file will cause WARNING errors, repeatedly, for a reason.
|
|
6 |
#
|
|
7 |
# WARNING: Use with caution.
|
|
8 |
#
|
|
9 |
|
|
10 |
# EXAMPLE: Testing a special build of hotspot
|
|
11 |
# (this is the build/solaris/export-solaris-sparc directory from doing
|
|
12 |
# a 'cd hotspot/make; gnumake' build)
|
|
13 |
#
|
|
14 |
ifeq ($(PLATFORM),solaris)
|
|
15 |
ifeq ($(ARCH),sparc)
|
|
16 |
ALT_HOTSPOT_IMPORT_PATH=$(JDK_TOPDIR)/../export-solaris-sparc
|
|
17 |
endif
|
|
18 |
endif
|
|
19 |
|